Searched refs:thisp (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/dom/ |
H A D | element.c | 1676 xmlNodePtr thisp; in dom_element_insert_adjacent_text() local 1726 xmlNodePtr thisp; in PHP_METHOD() local 1760 context = thisp; in PHP_METHOD() 1790 php_dom_pre_insert(this_intern->document, fragment, thisp->parent, thisp); in PHP_METHOD() 1796 php_dom_pre_insert(this_intern->document, fragment, thisp, thisp->children); in PHP_METHOD() 1818 xmlNodePtr thisp; in PHP_METHOD() local 1838 if (thisp->doc != NULL && thisp->doc->type == XML_HTML_DOCUMENT_NODE in PHP_METHOD() 1839 …&& ((!follow_spec && thisp->ns == NULL) || (thisp->ns != NULL && xmlStrEqual(thisp->ns->href, BAD_… in PHP_METHOD() 1902 xmlNodePtr thisp; in php_dom_dispatch_query_selector() local 1932 xmlNodePtr thisp; in PHP_METHOD() local [all …]
|
H A D | php_dom.h | 210 void dom_parent_node_query_selector(xmlNodePtr thisp, dom_object *intern, zval *return_value, const… 211 void dom_parent_node_query_selector_all(xmlNodePtr thisp, dom_object *intern, zval *return_value, c… 212 void dom_element_matches(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin… 213 void dom_element_closest(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin…
|
H A D | node.c | 2337 if (otherp == thisp) { in dom_node_contains() 2349 xmlNodePtr otherp, thisp; in PHP_METHOD() local 2366 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, unused_intern); in PHP_METHOD() 2368 RETURN_BOOL(dom_node_contains(thisp, otherp)); in PHP_METHOD() 2374 xmlNodePtr otherp, thisp; in PHP_METHOD() local 2388 RETURN_BOOL(dom_node_contains(thisp, otherp)); in PHP_METHOD() 2398 xmlNodePtr thisp; in PHP_METHOD() local 2408 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, intern); in PHP_METHOD() 2410 while (thisp->parent) { in PHP_METHOD() 2411 thisp = thisp->parent; in PHP_METHOD() [all …]
|
/php-src/ext/dom/parentnode/ |
H A D | css_selectors.c | 213 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 D | tree.c | 636 xmlNode *thisp = dom_object_get_node(context); in dom_parent_node_after() local 639 xmlNodePtr parentNode = thisp->parent; in dom_parent_node_after() 647 xmlNodePtr viable_next_sibling = thisp->next; in dom_parent_node_after() 668 xmlNode *thisp = dom_object_get_node(context); in dom_parent_node_before() local 671 xmlNodePtr parentNode = thisp->parent; in dom_parent_node_before() 679 xmlNodePtr viable_previous_sibling = thisp->prev; in dom_parent_node_before() 785 xmlNodePtr thisp = dom_object_get_node(context); in dom_parent_node_replace_children() local 790 xmlNodePtr node = dom_zvals_to_single_node(context->document, thisp, nodes, nodesc); in dom_parent_node_replace_children() 796 if (dom_is_pre_insert_valid_without_step_1(context->document, thisp, node, NULL, thisp->doc)) { in dom_parent_node_replace_children() 797 dom_remove_all_children(thisp); in dom_parent_node_replace_children() [all …]
|
Completed in 25 milliseconds