Home
last modified time | relevance | path

Searched refs:newchild (Results 1 – 3 of 3) sorted by relevance

/PHP-8.3/ext/dom/
H A Dparentnode.c320 xmlNodePtr newchild, prevsib; in dom_parent_node_append() local
334 newchild = fragment->children; in dom_parent_node_append()
337 if (newchild) { in dom_parent_node_append()
339 prevsib->next = newchild; in dom_parent_node_append()
347 newchild->prev = prevsib; in dom_parent_node_append()
380 if (newchild) { in dom_parent_node_prepend()
430 newchild = fragment->children; in dom_parent_node_after()
432 if (newchild) { in dom_parent_node_after()
484 if (newchild) { in dom_parent_node_before()
592 if (newchild) { in dom_child_replace_with()
[all …]
H A Dnode.c825 xmlNodePtr newchild, node; in _php_dom_insert_fragment() local
827 newchild = fragment->children; in _php_dom_insert_fragment()
829 if (newchild) { in _php_dom_insert_fragment()
831 nodep->children = newchild; in _php_dom_insert_fragment()
833 prevsib->next = newchild; in _php_dom_insert_fragment()
835 newchild->prev = prevsib; in _php_dom_insert_fragment()
843 node = newchild; in _php_dom_insert_fragment()
864 return newchild; in _php_dom_insert_fragment()
1079 (newchild->parent != NULL && dom_node_is_read_only(newchild->parent) == SUCCESS)) { in PHP_METHOD()
1084 if (newchild->doc != nodep->doc && newchild->doc != NULL) { in PHP_METHOD()
[all …]
/PHP-8.3/ext/dom/tests/
H A Ddom001.phpt73 $newchild = $rootnode->appendChild($myelement);
74 print_node($newchild);

Completed in 16 milliseconds