Lines Matching refs:this_intern

1578 …nsert_adjacent(const zend_string *where, xmlNodePtr thisp, dom_object *this_intern, xmlNodePtr oth…  in dom_insert_adjacent()  argument
1584 if (!php_dom_adopt_node(otherp, this_intern, thisp->doc)) { in dom_insert_adjacent()
1587 if (!php_dom_pre_insert(this_intern->document, otherp, thisp->parent, thisp)) { in dom_insert_adjacent()
1591 if (!php_dom_adopt_node(otherp, this_intern, thisp->doc)) { in dom_insert_adjacent()
1594 if (!php_dom_pre_insert(this_intern->document, otherp, thisp, thisp->children)) { in dom_insert_adjacent()
1598 if (!php_dom_adopt_node(otherp, this_intern, thisp->doc)) { in dom_insert_adjacent()
1601 if (!php_dom_pre_insert(this_intern->document, otherp, thisp, NULL)) { in dom_insert_adjacent()
1608 if (!php_dom_adopt_node(otherp, this_intern, thisp->doc)) { in dom_insert_adjacent()
1611 if (!php_dom_pre_insert(this_intern->document, otherp, thisp->parent, thisp->next)) { in dom_insert_adjacent()
1615 php_dom_throw_error(SYNTAX_ERR, dom_get_strict_error(this_intern->document)); in dom_insert_adjacent()
1628 dom_object *this_intern, *other_intern; in dom_element_insert_adjacent_element() local
1630 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, this_intern); in dom_element_insert_adjacent_element()
1633 xmlNodePtr result = dom_insert_adjacent(where, thisp, this_intern, otherp); in dom_element_insert_adjacent_element()
1674 dom_object *this_intern; in dom_element_insert_adjacent_text() local
1678 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, this_intern); in dom_element_insert_adjacent_text()
1686 xmlNodePtr result = dom_insert_adjacent(where, thisp, this_intern, otherp); in dom_element_insert_adjacent_text()
1724 dom_object *this_intern; in PHP_METHOD() local
1735 DOM_GET_THIS_OBJ(thisp, id, xmlNodePtr, this_intern); in PHP_METHOD()
1769 xmlNsPtr html_ns = php_dom_libxml_ns_mapper_ensure_html_ns(php_dom_get_ns_mapper(this_intern)); in PHP_METHOD()
1780 xmlNodePtr fragment = dom_parse_fragment(this_intern, context, string); in PHP_METHOD()
1785 php_libxml_invalidate_node_list_cache(this_intern->document); in PHP_METHOD()
1790 php_dom_pre_insert(this_intern->document, fragment, thisp->parent, thisp); in PHP_METHOD()
1793 php_dom_pre_insert(this_intern->document, fragment, thisp->parent, thisp->next); in PHP_METHOD()
1796 php_dom_pre_insert(this_intern->document, fragment, thisp, thisp->children); in PHP_METHOD()
1799 php_dom_node_append(this_intern->document, fragment, thisp); in PHP_METHOD()