Lines Matching refs:curnode

140     xmlNodePtr			curnode;/* current attribute node */  member
1294 reader->curnode = NULL; in xmlTextReaderRead()
1796 node = (reader->curnode != NULL) ? reader->curnode : reader->node; in xmlTextReaderReadString()
2128 ret->curnode = NULL; in xmlNewTextReader()
2304 reader->curnode = NULL; in xmlTextReaderClose()
2343 if (reader->curnode != NULL) in xmlTextReaderGetAttributeNo()
2392 if (reader->curnode != NULL) in xmlTextReaderGetAttribute()
2463 if (reader->curnode != NULL) in xmlTextReaderGetAttributeNs()
2513 reader->curnode = NULL; in xmlTextReaderGetRemainder()
2591 reader->curnode = NULL; in xmlTextReaderMoveToAttributeNo()
2598 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttributeNo()
2612 reader->curnode = (xmlNodePtr) cur; in xmlTextReaderMoveToAttributeNo()
2651 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttribute()
2668 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttribute()
2683 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttribute()
2699 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttribute()
2754 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttributeNs()
2772 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttributeNs()
2799 reader->curnode = (xmlNodePtr) reader->node->nsDef; in xmlTextReaderMoveToFirstAttribute()
2803 reader->curnode = (xmlNodePtr) reader->node->properties; in xmlTextReaderMoveToFirstAttribute()
2826 if (reader->curnode == NULL) in xmlTextReaderMoveToNextAttribute()
2829 if (reader->curnode->type == XML_NAMESPACE_DECL) { in xmlTextReaderMoveToNextAttribute()
2830 xmlNsPtr ns = (xmlNsPtr) reader->curnode; in xmlTextReaderMoveToNextAttribute()
2832 reader->curnode = (xmlNodePtr) ns->next; in xmlTextReaderMoveToNextAttribute()
2836 reader->curnode = (xmlNodePtr) reader->node->properties; in xmlTextReaderMoveToNextAttribute()
2840 } else if ((reader->curnode->type == XML_ATTRIBUTE_NODE) && in xmlTextReaderMoveToNextAttribute()
2841 (reader->curnode->next != NULL)) { in xmlTextReaderMoveToNextAttribute()
2842 reader->curnode = reader->curnode->next; in xmlTextReaderMoveToNextAttribute()
2865 if (reader->curnode != NULL) { in xmlTextReaderMoveToElement()
2866 reader->curnode = NULL; in xmlTextReaderMoveToElement()
2888 if (reader->curnode == NULL) in xmlTextReaderReadAttributeValue()
2890 if (reader->curnode->type == XML_ATTRIBUTE_NODE) { in xmlTextReaderReadAttributeValue()
2891 if (reader->curnode->children == NULL) in xmlTextReaderReadAttributeValue()
2893 reader->curnode = reader->curnode->children; in xmlTextReaderReadAttributeValue()
2894 } else if (reader->curnode->type == XML_NAMESPACE_DECL) { in xmlTextReaderReadAttributeValue()
2895 xmlNsPtr ns = (xmlNsPtr) reader->curnode; in xmlTextReaderReadAttributeValue()
2907 reader->curnode = reader->faketext; in xmlTextReaderReadAttributeValue()
2909 if (reader->curnode->next == NULL) in xmlTextReaderReadAttributeValue()
2911 reader->curnode = reader->curnode->next; in xmlTextReaderReadAttributeValue()
2969 if (reader->curnode != NULL) in xmlTextReaderAttributeCount()
2970 node = reader->curnode; in xmlTextReaderAttributeCount()
3011 if (reader->curnode != NULL) in xmlTextReaderNodeType()
3012 node = reader->curnode; in xmlTextReaderNodeType()
3081 if (reader->curnode != NULL) in xmlTextReaderIsEmptyElement()
3110 if (reader->curnode != NULL) in xmlTextReaderLocalName()
3111 node = reader->curnode; in xmlTextReaderLocalName()
3141 if (reader->curnode != NULL) in xmlTextReaderConstLocalName()
3142 node = reader->curnode; in xmlTextReaderConstLocalName()
3174 if (reader->curnode != NULL) in xmlTextReaderName()
3175 node = reader->curnode; in xmlTextReaderName()
3249 if (reader->curnode != NULL) in xmlTextReaderConstName()
3250 node = reader->curnode; in xmlTextReaderConstName()
3316 if (reader->curnode != NULL) in xmlTextReaderPrefix()
3317 node = reader->curnode; in xmlTextReaderPrefix()
3348 if (reader->curnode != NULL) in xmlTextReaderConstPrefix()
3349 node = reader->curnode; in xmlTextReaderConstPrefix()
3380 if (reader->curnode != NULL) in xmlTextReaderNamespaceUri()
3381 node = reader->curnode; in xmlTextReaderNamespaceUri()
3408 if (reader->curnode != NULL) in xmlTextReaderConstNamespaceUri()
3409 node = reader->curnode; in xmlTextReaderConstNamespaceUri()
3477 if (reader->curnode != NULL) { in xmlTextReaderDepth()
3478 if ((reader->curnode->type == XML_ATTRIBUTE_NODE) || in xmlTextReaderDepth()
3479 (reader->curnode->type == XML_NAMESPACE_DECL)) in xmlTextReaderDepth()
3501 if (reader->curnode != NULL) in xmlTextReaderHasAttributes()
3502 node = reader->curnode; in xmlTextReaderHasAttributes()
3528 if (reader->curnode != NULL) in xmlTextReaderHasValue()
3529 node = reader->curnode; in xmlTextReaderHasValue()
3563 if (reader->curnode != NULL) in xmlTextReaderValue()
3564 node = reader->curnode; in xmlTextReaderValue()
3609 if (reader->curnode != NULL) in xmlTextReaderConstValue()
3610 node = reader->curnode; in xmlTextReaderConstValue()
3915 if (reader->curnode != NULL) in xmlTextReaderCurrentNode()
3916 return(reader->curnode); in xmlTextReaderCurrentNode()
3937 if (reader->curnode != NULL) in xmlTextReaderPreserve()
3938 cur = reader->curnode; in xmlTextReaderPreserve()
4631 if (reader->curnode != NULL) in xmlTextReaderIsNamespaceDecl()
4632 node = reader->curnode; in xmlTextReaderIsNamespaceDecl()
5167 reader->curnode = NULL; in xmlTextReaderSetup()
5335 ret->curnode = NULL; in xmlReaderWalker()
5537 reader->curnode = NULL; in xmlReaderNewWalker()