Lines Matching refs:last
55 xmlNodePtr last = nodep->last; in dom_parent_node_last_element_child_read() local
57 while (last && last->type != XML_ELEMENT_NODE) { in dom_parent_node_last_element_child_read()
58 last = last->prev; in dom_parent_node_last_element_child_read()
61 php_dom_create_nullable_object(last, retval, obj); in dom_parent_node_last_element_child_read()
126 xmlNodePtr last = parent->last; in dom_add_child_without_merging() local
127 last->next = child; in dom_add_child_without_merging()
128 child->prev = last; in dom_add_child_without_merging()
130 parent->last = child; in dom_add_child_without_merging()
141 if (node == fragment->last) { in dom_fragment_assign_parent_node()
462 …ert_helper(xmlNodePtr insertion_point, xmlNodePtr parentNode, xmlNodePtr newchild, xmlNodePtr last) in php_dom_pre_insert_helper() argument
468 newchild->prev = parentNode->last; in php_dom_pre_insert_helper()
469 parentNode->last->next = newchild; in php_dom_pre_insert_helper()
474 parentNode->last = last; in php_dom_pre_insert_helper()
477 last->next = insertion_point; in php_dom_pre_insert_helper()
482 insertion_point->prev = last; in php_dom_pre_insert_helper()
519 xmlNodePtr last = node->last; in dom_insert_node_list_unchecked() local
520 php_dom_pre_insert_helper(insertion_point, parent, newchild, last); in dom_insert_node_list_unchecked()
523 dom_reconcile_ns_list(parent->doc, newchild, last); in dom_insert_node_list_unchecked()
535 node->last = NULL; in dom_insert_node_list_unchecked()