new_child 1004 ext/dom/node.c xmlNodePtr child, new_child, parentp, refp; new_child 1020 ext/dom/node.c new_child = NULL; new_child 1066 ext/dom/node.c new_child = child; new_child 1067 ext/dom/node.c new_child->parent = refp->parent; new_child 1068 ext/dom/node.c new_child->next = refp; new_child 1069 ext/dom/node.c new_child->prev = refp->prev; new_child 1070 ext/dom/node.c refp->prev = new_child; new_child 1071 ext/dom/node.c if (new_child->prev != NULL) { new_child 1072 ext/dom/node.c new_child->prev->next = new_child; new_child 1074 ext/dom/node.c if (new_child->parent != NULL) { new_child 1075 ext/dom/node.c if (new_child->parent->children == refp) { new_child 1076 ext/dom/node.c new_child->parent->children = new_child; new_child 1097 ext/dom/node.c new_child = _php_dom_insert_fragment(parentp, refp->prev, refp, child, intern, childobj TSRMLS_CC); new_child 1100 ext/dom/node.c if (new_child == NULL) { new_child 1101 ext/dom/node.c new_child = xmlAddPrevSibling(refp, child); new_child 1112 ext/dom/node.c new_child = child; new_child 1118 ext/dom/node.c child->next = new_child; new_child 1119 ext/dom/node.c new_child->prev = child; new_child 1120 ext/dom/node.c parentp->last = new_child; new_child 1139 ext/dom/node.c new_child = _php_dom_insert_fragment(parentp, parentp->last, NULL, child, intern, childobj TSRMLS_CC); new_child 1141 ext/dom/node.c if (new_child == NULL) { new_child 1142 ext/dom/node.c new_child = xmlAddChild(parentp, child); new_child 1146 ext/dom/node.c if (NULL == new_child) { new_child 1151 ext/dom/node.c dom_reconcile_ns(parentp->doc, new_child); new_child 1153 ext/dom/node.c DOM_RET_OBJ(new_child, &ret, intern); new_child 1304 ext/dom/node.c xmlNodePtr child, nodep, new_child = NULL; new_child 1357 ext/dom/node.c new_child = child; new_child 1363 ext/dom/node.c child->next = new_child; new_child 1364 ext/dom/node.c new_child->prev = child; new_child 1365 ext/dom/node.c nodep->last = new_child; new_child 1381 ext/dom/node.c new_child = _php_dom_insert_fragment(nodep, nodep->last, NULL, child, intern, childobj TSRMLS_CC); new_child 1384 ext/dom/node.c if (new_child == NULL) { new_child 1385 ext/dom/node.c new_child = xmlAddChild(nodep, child); new_child 1386 ext/dom/node.c if (new_child == NULL) { new_child 1392 ext/dom/node.c dom_reconcile_ns(nodep->doc, new_child); new_child 1394 ext/dom/node.c DOM_RET_OBJ(new_child, &ret, intern);