Home
last modified time | relevance | path

Searched refs:basep (Results 1 – 7 of 7) sorted by relevance

/php-src/ext/dom/
H A Dnodelist.c106 xmlNodePtr basep = nodep; in php_dom_get_nodelist_length() local
107 nodep = php_dom_first_child_of_container_node(basep); in php_dom_get_nodelist_length()
109basep, nodep, objmap->ns, objmap->local, objmap->local_lower, &count, ZEND_LONG_MAX - 1 /* because… in php_dom_get_nodelist_length()
155 xmlNodePtr basep = dom_object_get_node(objmap->baseobj); in php_dom_nodelist_get_item_into_zval() local
156 if (basep) { in php_dom_nodelist_get_item_into_zval()
157 xmlNodePtr nodep = basep; in php_dom_nodelist_get_item_into_zval()
192 nodep = php_dom_first_child_of_container_node(basep); in php_dom_nodelist_get_item_into_zval()
194 …itemnode = dom_get_elements_by_tag_name_ns_raw(basep, nodep, objmap->ns, objmap->local, objmap->lo… in php_dom_nodelist_get_item_into_zval()
H A Dhtml_collection.c47 xmlNodePtr basep = dom_object_get_node(objmap->baseobj); in dom_html_collection_named_item() local
48 if (basep != NULL) { in dom_html_collection_named_item()
51 xmlNodePtr candidate = basep->children; in dom_html_collection_named_item()
53 …candidate = dom_get_elements_by_tag_name_ns_raw(basep, candidate, objmap->ns, objmap->local, objma… in dom_html_collection_named_item()
H A Ddom_iterators.c144 xmlNodePtr basep = dom_object_get_node(objmap->baseobj); in dom_fetch_first_iteration_item() local
145 if (!basep) { in dom_fetch_first_iteration_item()
150 return (xmlNodePtr) basep->properties; in dom_fetch_first_iteration_item()
152 return dom_nodelist_iter_start_first_child(basep); in dom_fetch_first_iteration_item()
156 xmlNodePtr nodep = php_dom_first_child_of_container_node(basep); in dom_fetch_first_iteration_item()
158 basep, nodep, objmap->ns, objmap->local, objmap->local_lower, &curindex, 0); in dom_fetch_first_iteration_item()
H A Dxml_common.h92 …end_always_inline xmlNodePtr php_dom_next_in_tree_order(const xmlNode *nodep, const xmlNode *basep) in php_dom_next_in_tree_order() argument
104 if (nodep == basep) { in php_dom_next_in_tree_order()
H A Ddocument.c1717 static void dom_xinclude_strip_references(xmlNodePtr basep) in dom_xinclude_strip_references() argument
1719 php_libxml_node_free_resource(basep); in dom_xinclude_strip_references()
1721 xmlNodePtr current = basep->children; in dom_xinclude_strip_references()
1725 current = php_dom_next_in_tree_order(current, basep); in dom_xinclude_strip_references()
1733 static void dom_xinclude_strip_fallback_references(const xmlNode *basep) in dom_xinclude_strip_fallback_references() argument
1735 xmlNodePtr current = basep->children; in dom_xinclude_strip_fallback_references()
1744 current = php_dom_next_in_tree_order(current, basep); in dom_xinclude_strip_fallback_references()
H A Dphp_dom.h146 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr basep, xmlNodePtr nodep, xmlChar *ns, xmlCh…
H A Dphp_dom.c1871 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr basep, xmlNodePtr nodep, xmlChar *ns, xmlCh… in dom_get_elements_by_tag_name_ns_raw() argument
1886 bool match_qname = ns == NULL && php_dom_follow_spec_node(basep); in dom_get_elements_by_tag_name_ns_raw()
1901 nodep = php_dom_next_in_tree_order(nodep, basep); in dom_get_elements_by_tag_name_ns_raw()

Completed in 44 milliseconds