Lines Matching refs:xmlChar
1469 const xmlChar* tmp; in dom_namednode_iter()
1473 if (doc != NULL && (tmp = xmlDictExists(doc->dict, (const xmlChar *)local, len)) != NULL) { in dom_namednode_iter()
1485 if (doc != NULL && (tmp = xmlDictExists(doc->dict, (const xmlChar *)ns, len)) != NULL) { in dom_namednode_iter()
1826 bool dom_match_qualified_name_according_to_spec(const xmlChar *qname, const xmlNode *nodep) in dom_match_qualified_name_according_to_spec()
1828 const xmlChar *node_local = nodep->name; in dom_match_qualified_name_according_to_spec()
1852 static bool dom_match_qualified_name_for_tag_name_equality(const xmlChar *local, const xmlChar *loc… in dom_match_qualified_name_for_tag_name_equality()
1858 …const xmlChar *local_to_use = nodep->doc->type == XML_HTML_DOCUMENT_NODE && php_dom_ns_is_fast(nod… in dom_match_qualified_name_for_tag_name_equality()
1862 …ts_by_tag_name_ns_raw(xmlNodePtr basep, xmlNodePtr nodep, xmlChar *ns, xmlChar *local, xmlChar *lo… in dom_get_elements_by_tag_name_ns_raw()
1918 xmlChar *strContent = nextp->content; in dom_merge_adjacent_exclusive_text_nodes()
2071 …tract(const zend_string *namespace, const zend_string *qname, xmlChar **localName, xmlChar **prefi… in dom_validate_and_extract()
2131 *localname = (char *)xmlSplitQName2(BAD_CAST qname, (xmlChar **) prefix); in dom_check_qname()
2169 xmlNsPtr nsptr = xmlSearchNs(doc, tree, (const xmlChar *) prefix); in dom_get_ns_resolve_prefix_conflict()
2175 nsptr = xmlSearchNs(doc, tree, (const xmlChar *) prefix); in dom_get_ns_resolve_prefix_conflict()
2179 return xmlNewNs(tree, (const xmlChar *) uri, (const xmlChar *) prefix); in dom_get_ns_resolve_prefix_conflict()
2230 xmlNsPtr dom_get_nsdecl(xmlNode *node, xmlChar *localName) { in dom_get_nsdecl()
2367 xmlChar *value = php_libxml_attr_value((const xmlAttr *) nodep, &free); in php_dom_get_content_into_zval()
2695 xmlAttrPtr php_dom_get_attribute_node(xmlNodePtr elem, const xmlChar *name, size_t name_len) in php_dom_get_attribute_node()
2697 xmlChar *name_processed = BAD_CAST name; in php_dom_get_attribute_node()
2721 xmlChar *php_dom_libxml_fix_file_path(xmlChar *path) in php_dom_libxml_fix_file_path()
2726 xmlChar *new_path = xmlStrdup(BAD_CAST "file:///"); in php_dom_libxml_fix_file_path()
2748 xmlDocPtr lxml_doc = xmlNewDoc((const xmlChar *) "1.0"); in php_dom_create_html_doc()