Searched refs:curnode (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/dom/ |
| H A D | namednodemap.c | 89 xmlAttrPtr curnode; local 104 curnode = nodep->properties; 105 if (curnode) { 107 while (curnode->next != NULL) { 109 curnode = curnode->next; 210 xmlNodePtr nodep, curnode; local 234 curnode = (xmlNodePtr)nodep->properties; 236 while (count < index && curnode != NULL) { 238 curnode [all...] |
| H A D | nodelist.c | 57 xmlNodePtr nodep, curnode; local 73 curnode = nodep->children; 74 if (curnode) { 76 while (curnode->next != NULL) { 78 curnode = curnode->next; 87 curnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, -1); 114 xmlNodePtr nodep, curnode; local 146 curnode = nodep->children; 147 while (count < index && curnode ! [all...] |
| H A D | dom_iterators.c | 171 xmlNodePtr curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->ptr)->node; local 172 ZVAL_STRINGL(key, (char *) curnode->name, xmlStrlen(curnode->name), 1); 184 xmlNodePtr curnode = NULL, basenode; local 211 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->ptr)->node; 214 curnode = curnode->next; 226 curnode = dom_get_elements_by_tag_name_ns_raw(basenode, objmap->ns, objmap->local, &previndex, iter->index); 231 curnode = php_dom_libxml_hash_iter(objmap->ht, iter->index); 233 curnode 261 xmlNodePtr nodep, curnode=NULL; local [all...] |
| /PHP_TRUNK/ext/simplexml/ |
| H A D | sxe.c | 90 xmlNodePtr curnode; local 104 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node; 105 RETURN_STRINGL((char*)curnode->name, xmlStrlen(curnode->name), 1);
|
| H A D | simplexml.c | 2385 xmlNodePtr curnode = NULL; local 2387 curnode = (xmlNodePtr)((php_libxml_node_ptr *)intern->node)->node; 2390 if (curnode) { 2391 ZVAL_STRINGL(key, (char *) curnode->name, xmlStrlen(curnode->name), 1);
|
| /PHP_TRUNK/ext/libxml/ |
| H A D | libxml.c | 224 xmlNodePtr curnode; local 227 curnode = node; 228 while (curnode != NULL) { 229 node = curnode; 254 curnode = node->next;
|
Completed in 10 milliseconds