new_child 919 ext/dom/node.c xmlNodePtr child, new_child, parentp, refp; new_child 935 ext/dom/node.c new_child = NULL; new_child 981 ext/dom/node.c new_child = child; new_child 982 ext/dom/node.c new_child->parent = refp->parent; new_child 983 ext/dom/node.c new_child->next = refp; new_child 984 ext/dom/node.c new_child->prev = refp->prev; new_child 985 ext/dom/node.c refp->prev = new_child; new_child 986 ext/dom/node.c if (new_child->prev != NULL) { new_child 987 ext/dom/node.c new_child->prev->next = new_child; new_child 989 ext/dom/node.c if (new_child->parent != NULL) { new_child 990 ext/dom/node.c if (new_child->parent->children == refp) { new_child 991 ext/dom/node.c new_child->parent->children = new_child; new_child 1012 ext/dom/node.c new_child = _php_dom_insert_fragment(parentp, refp->prev, refp, child, intern, childobj); new_child 1015 ext/dom/node.c if (new_child == NULL) { new_child 1016 ext/dom/node.c new_child = xmlAddPrevSibling(refp, child); new_child 1027 ext/dom/node.c new_child = child; new_child 1033 ext/dom/node.c child->next = new_child; new_child 1034 ext/dom/node.c new_child->prev = child; new_child 1035 ext/dom/node.c parentp->last = new_child; new_child 1054 ext/dom/node.c new_child = _php_dom_insert_fragment(parentp, parentp->last, NULL, child, intern, childobj); new_child 1056 ext/dom/node.c if (new_child == NULL) { new_child 1057 ext/dom/node.c new_child = xmlAddChild(parentp, child); new_child 1061 ext/dom/node.c if (NULL == new_child) { new_child 1066 ext/dom/node.c dom_reconcile_ns(parentp->doc, new_child); new_child 1068 ext/dom/node.c DOM_RET_OBJ(new_child, &ret, intern); new_child 1219 ext/dom/node.c xmlNodePtr child, nodep, new_child = NULL; new_child 1272 ext/dom/node.c new_child = child; new_child 1278 ext/dom/node.c child->next = new_child; new_child 1279 ext/dom/node.c new_child->prev = child; new_child 1280 ext/dom/node.c nodep->last = new_child; new_child 1296 ext/dom/node.c new_child = _php_dom_insert_fragment(nodep, nodep->last, NULL, child, intern, childobj); new_child 1299 ext/dom/node.c if (new_child == NULL) { new_child 1300 ext/dom/node.c new_child = xmlAddChild(nodep, child); new_child 1301 ext/dom/node.c if (new_child == NULL) { new_child 1307 ext/dom/node.c dom_reconcile_ns(nodep->doc, new_child); new_child 1309 ext/dom/node.c DOM_RET_OBJ(new_child, &ret, intern);