Lines Matching refs:first
33 xmlNode *nodep, *first = NULL; in dom_parent_node_first_element_child_read() local
43 first = nodep->children; in dom_parent_node_first_element_child_read()
45 while (first && first->type != XML_ELEMENT_NODE) { in dom_parent_node_first_element_child_read()
46 first = first->next; in dom_parent_node_first_element_child_read()
50 if (!first) { in dom_parent_node_first_element_child_read()
55 php_dom_create_object(first, retval, obj); in dom_parent_node_first_element_child_read()
99 xmlNode *nodep, *first = NULL; in dom_parent_node_child_element_count() local
110 first = nodep->children; in dom_parent_node_child_element_count()
112 while (first != NULL) { in dom_parent_node_child_element_count()
113 if (first->type == XML_ELEMENT_NODE) { in dom_parent_node_child_element_count()
117 first = first->next; in dom_parent_node_child_element_count()