Home
last modified time | relevance | path

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

/PHP-7.0/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.0/ext/dom/
H A Dnode.c946 new_child = NULL; in PHP_FUNCTION()
992 new_child = child; in PHP_FUNCTION()
994 new_child->next = refp; in PHP_FUNCTION()
996 refp->prev = new_child; in PHP_FUNCTION()
998 new_child->prev->next = new_child; in PHP_FUNCTION()
1002 new_child->parent->children = new_child; in PHP_FUNCTION()
1026 if (new_child == NULL) { in PHP_FUNCTION()
1038 new_child = child; in PHP_FUNCTION()
1072 if (NULL == new_child) { in PHP_FUNCTION()
1283 new_child = child; in PHP_FUNCTION()
[all …]

Completed in 10 milliseconds