Searched refs:basep (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/dom/ |
H A D | nodelist.c | 106 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() 109 …basep, 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 D | html_collection.c | 47 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 D | dom_iterators.c | 144 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 D | xml_common.h | 92 …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 D | document.c | 1712 static void dom_xinclude_strip_references(xmlNodePtr basep) in dom_xinclude_strip_references() argument 1714 php_libxml_node_free_resource(basep); in dom_xinclude_strip_references() 1716 xmlNodePtr current = basep->children; in dom_xinclude_strip_references() 1720 current = php_dom_next_in_tree_order(current, basep); in dom_xinclude_strip_references() 1728 static void dom_xinclude_strip_fallback_references(const xmlNode *basep) in dom_xinclude_strip_fallback_references() argument 1730 xmlNodePtr current = basep->children; in dom_xinclude_strip_fallback_references() 1739 current = php_dom_next_in_tree_order(current, basep); in dom_xinclude_strip_fallback_references()
|
H A D | php_dom.h | 147 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr basep, xmlNodePtr nodep, xmlChar *ns, xmlCh…
|
H A D | php_dom.c | 1868 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 1883 bool match_qname = ns == NULL && php_dom_follow_spec_node(basep); in dom_get_elements_by_tag_name_ns_raw() 1898 nodep = php_dom_next_in_tree_order(nodep, basep); in dom_get_elements_by_tag_name_ns_raw()
|
Completed in 26 milliseconds