Home
last modified time | relevance | path

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

/PHP-8.2/ext/dom/
H A Dparentnode.c332 xmlNodePtr newchild, prevsib; in dom_parent_node_append() local
344 newchild = fragment->children; in dom_parent_node_append()
347 if (newchild) { in dom_parent_node_append()
349 prevsib->next = newchild; in dom_parent_node_append()
357 newchild->prev = prevsib; in dom_parent_node_append()
388 if (newchild) { in dom_parent_node_prepend()
441 newchild = fragment->children; in dom_parent_node_after()
443 if (newchild) { in dom_parent_node_after()
496 newchild = fragment->children; in dom_parent_node_before()
498 if (newchild) { in dom_parent_node_before()
[all …]
H A Dnode.c803 xmlNodePtr newchild, node; in _php_dom_insert_fragment() local
805 newchild = fragment->children; in _php_dom_insert_fragment()
807 if (newchild) { in _php_dom_insert_fragment()
809 nodep->children = newchild; in _php_dom_insert_fragment()
811 prevsib->next = newchild; in _php_dom_insert_fragment()
813 newchild->prev = prevsib; in _php_dom_insert_fragment()
821 node = newchild; in _php_dom_insert_fragment()
842 return newchild; in _php_dom_insert_fragment()
1055 (newchild->parent != NULL && dom_node_is_read_only(newchild->parent) == SUCCESS)) { in PHP_METHOD()
1060 if (newchild->doc != nodep->doc && newchild->doc != NULL) { in PHP_METHOD()
[all …]
/PHP-8.2/ext/dom/tests/
H A Ddom001.phpt73 $newchild = $rootnode->appendChild($myelement);
74 print_node($newchild);

Completed in 15 milliseconds