Home
last modified time | relevance | path

Searched refs:thisp (Results 1 – 5 of 5) sorted by relevance

/php-src/ext/dom/parentnode/
H A Dcss_selectors.c213 void dom_parent_node_query_selector(xmlNodePtr thisp, dom_object *intern, zval *return_value, const… in dom_parent_node_query_selector() argument
218 thisp, in dom_parent_node_query_selector()
232 void dom_parent_node_query_selector_all(xmlNodePtr thisp, dom_object *intern, zval *return_value, c… in dom_parent_node_query_selector_all() argument
238 thisp, in dom_parent_node_query_selector_all()
257 void dom_element_matches(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin… in dom_element_matches() argument
259 dom_query_selector_matches_ctx ctx = { thisp, false }; in dom_element_matches()
262 thisp, in dom_element_matches()
274 void dom_element_closest(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin… in dom_element_closest() argument
276 const xmlNode *result = dom_query_closest(thisp, intern, selectors_str); in dom_element_closest()
H A Dtree.c628 xmlNode *thisp = dom_object_get_node(context); in dom_parent_node_after() local
631 xmlNodePtr parentNode = thisp->parent; in dom_parent_node_after()
639 xmlNodePtr viable_next_sibling = thisp->next; in dom_parent_node_after()
660 xmlNode *thisp = dom_object_get_node(context); in dom_parent_node_before() local
663 xmlNodePtr parentNode = thisp->parent; in dom_parent_node_before()
671 xmlNodePtr viable_previous_sibling = thisp->prev; in dom_parent_node_before()
777 xmlNodePtr thisp = dom_object_get_node(context); in dom_parent_node_replace_children() local
782 xmlNodePtr node = dom_zvals_to_single_node(context->document, thisp, nodes, nodesc); in dom_parent_node_replace_children()
788 if (dom_is_pre_insert_valid_without_step_1(context->document, thisp, node, NULL, thisp->doc)) { in dom_parent_node_replace_children()
789 dom_remove_all_children(thisp); in dom_parent_node_replace_children()
[all …]
/php-src/ext/dom/
H A Delement.c540 ZEND_ASSERT(thisp != NULL); in dom_remove_attribute()
1569 if (!php_dom_pre_insert(this_intern->document, otherp, thisp->parent, thisp)) { in dom_insert_adjacent()
1576 if (!php_dom_pre_insert(this_intern->document, otherp, thisp, thisp->children)) { in dom_insert_adjacent()
1609 xmlNodePtr thisp, otherp; in dom_element_insert_adjacent_element() local
1658 xmlNodePtr thisp; in dom_element_insert_adjacent_text() local
1708 xmlNodePtr thisp; in PHP_METHOD() local
1728 if (thisp->doc != NULL && thisp->doc->type == XML_HTML_DOCUMENT_NODE in PHP_METHOD()
1729 …&& ((!follow_spec && thisp->ns == NULL) || (thisp->ns != NULL && xmlStrEqual(thisp->ns->href, BAD_… in PHP_METHOD()
1792 xmlNodePtr thisp; in php_dom_dispatch_query_selector() local
1822 xmlNodePtr thisp; in PHP_METHOD() local
[all …]
H A Dphp_dom.h208 void dom_parent_node_query_selector(xmlNodePtr thisp, dom_object *intern, zval *return_value, const…
209 void dom_parent_node_query_selector_all(xmlNodePtr thisp, dom_object *intern, zval *return_value, c…
210 void dom_element_matches(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin…
211 void dom_element_closest(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin…
H A Dnode.c2286 if (otherp == thisp) { in dom_node_contains()
2298 xmlNodePtr otherp, thisp; in PHP_METHOD() local
2315 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, unused_intern); in PHP_METHOD()
2317 RETURN_BOOL(dom_node_contains(thisp, otherp)); in PHP_METHOD()
2323 xmlNodePtr otherp, thisp; in PHP_METHOD() local
2337 RETURN_BOOL(dom_node_contains(thisp, otherp)); in PHP_METHOD()
2347 xmlNodePtr thisp; in PHP_METHOD() local
2357 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, intern); in PHP_METHOD()
2359 while (thisp->parent) { in PHP_METHOD()
2360 thisp = thisp->parent; in PHP_METHOD()
[all …]

Completed in 25 milliseconds