Home
last modified time | relevance | path

Searched refs:new_child (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/ext/dom/tests/
H A DDOMNode_replaceChild_basic.phpt17 $new_child = $document->createElement('qux');
18 $old_child = $parent->replaceChild($new_child, $parent->firstChild);
24 $parent->replaceChild($new_child, $parent->firstChild);
28 $new_child = $document->getElementsByTagName('spam')->item(0);
30 $parent->replaceChild($new_child, $parent->firstChild);
/PHP-7.4/ext/dom/
H A Dnode.c952 new_child = NULL; in PHP_FUNCTION()
998 new_child = child; in PHP_FUNCTION()
1000 new_child->next = refp; in PHP_FUNCTION()
1002 refp->prev = new_child; in PHP_FUNCTION()
1004 new_child->prev->next = new_child; in PHP_FUNCTION()
1008 new_child->parent->children = new_child; in PHP_FUNCTION()
1032 if (new_child == NULL) { in PHP_FUNCTION()
1044 new_child = child; in PHP_FUNCTION()
1078 if (NULL == new_child) { in PHP_FUNCTION()
1292 new_child = child; in PHP_FUNCTION()
[all …]

Completed in 11 milliseconds