Lines Matching refs:curnode

83 	xmlNode *curnode = php_dom_libxml_hash_iter_ex(objmap->ht, index);  in php_dom_libxml_hash_iter()  local
85 if (curnode != NULL && objmap->nodetype != XML_ENTITY_NODE) { in php_dom_libxml_hash_iter()
86 xmlNotation *notation = (xmlNotation *) curnode; in php_dom_libxml_hash_iter()
87 curnode = create_notation(notation->name, notation->PublicID, notation->SystemID); in php_dom_libxml_hash_iter()
90 return curnode; in php_dom_libxml_hash_iter()
135 xmlNodePtr curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->ptr)->node; in php_dom_iterator_current_key() local
136 ZVAL_STRINGL(key, (char *) curnode->name, xmlStrlen(curnode->name)); in php_dom_iterator_current_key()
166 xmlNodePtr curnode = NULL; in php_dom_iterator_move_forward() local
195 curnode = dom_fetch_first_iteration_item(objmap); in php_dom_iterator_move_forward()
197 while (curnode != NULL && index++ < iter->index) { in php_dom_iterator_move_forward()
198 curnode = curnode->next; in php_dom_iterator_move_forward()
201 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->ptr)->node; in php_dom_iterator_move_forward()
202 curnode = curnode->next; in php_dom_iterator_move_forward()
216 curnode = php_dom_first_child_of_container_node(basenode); in php_dom_iterator_move_forward()
219 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->ptr)->node; in php_dom_iterator_move_forward()
221 curnode = dom_get_elements_by_tag_name_ns_raw( in php_dom_iterator_move_forward()
222 basenode, curnode, objmap->ns, objmap->local, objmap->local_lower, &previndex, iter->index); in php_dom_iterator_move_forward()
226 curnode = php_dom_libxml_hash_iter(objmap, iter->index); in php_dom_iterator_move_forward()
233 if (curnode) { in php_dom_iterator_move_forward()
234 php_dom_create_object(curnode, &iterator->curobj, objmap->baseobj); in php_dom_iterator_move_forward()
254 xmlNodePtr curnode=NULL; in php_dom_get_iterator() local
284 curnode = dom_fetch_first_iteration_item(objmap); in php_dom_get_iterator()
287 curnode = php_dom_libxml_hash_iter(objmap, 0); in php_dom_get_iterator()
291 if (curnode) { in php_dom_get_iterator()
292 php_dom_create_object(curnode, &iterator->curobj, objmap->baseobj); in php_dom_get_iterator()