• Home
  • Raw
  • Download

Lines Matching refs:curnode

140     xmlNodePtr			curnode;/* current attribute node */  member
1299 reader->curnode = NULL; in xmlTextReaderRead()
1803 node = (reader->curnode != NULL) ? reader->curnode : reader->node; in xmlTextReaderReadString()
2135 ret->curnode = NULL; in xmlNewTextReader()
2311 reader->curnode = NULL; in xmlTextReaderClose()
2350 if (reader->curnode != NULL) in xmlTextReaderGetAttributeNo()
2399 if (reader->curnode != NULL) in xmlTextReaderGetAttribute()
2470 if (reader->curnode != NULL) in xmlTextReaderGetAttributeNs()
2520 reader->curnode = NULL; in xmlTextReaderGetRemainder()
2598 reader->curnode = NULL; in xmlTextReaderMoveToAttributeNo()
2605 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttributeNo()
2619 reader->curnode = (xmlNodePtr) cur; in xmlTextReaderMoveToAttributeNo()
2658 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttribute()
2675 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttribute()
2690 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttribute()
2706 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttribute()
2761 reader->curnode = (xmlNodePtr) ns; in xmlTextReaderMoveToAttributeNs()
2779 reader->curnode = (xmlNodePtr) prop; in xmlTextReaderMoveToAttributeNs()
2806 reader->curnode = (xmlNodePtr) reader->node->nsDef; in xmlTextReaderMoveToFirstAttribute()
2810 reader->curnode = (xmlNodePtr) reader->node->properties; in xmlTextReaderMoveToFirstAttribute()
2833 if (reader->curnode == NULL) in xmlTextReaderMoveToNextAttribute()
2836 if (reader->curnode->type == XML_NAMESPACE_DECL) { in xmlTextReaderMoveToNextAttribute()
2837 xmlNsPtr ns = (xmlNsPtr) reader->curnode; in xmlTextReaderMoveToNextAttribute()
2839 reader->curnode = (xmlNodePtr) ns->next; in xmlTextReaderMoveToNextAttribute()
2843 reader->curnode = (xmlNodePtr) reader->node->properties; in xmlTextReaderMoveToNextAttribute()
2847 } else if ((reader->curnode->type == XML_ATTRIBUTE_NODE) && in xmlTextReaderMoveToNextAttribute()
2848 (reader->curnode->next != NULL)) { in xmlTextReaderMoveToNextAttribute()
2849 reader->curnode = reader->curnode->next; in xmlTextReaderMoveToNextAttribute()
2872 if (reader->curnode != NULL) { in xmlTextReaderMoveToElement()
2873 reader->curnode = NULL; in xmlTextReaderMoveToElement()
2895 if (reader->curnode == NULL) in xmlTextReaderReadAttributeValue()
2897 if (reader->curnode->type == XML_ATTRIBUTE_NODE) { in xmlTextReaderReadAttributeValue()
2898 if (reader->curnode->children == NULL) in xmlTextReaderReadAttributeValue()
2900 reader->curnode = reader->curnode->children; in xmlTextReaderReadAttributeValue()
2901 } else if (reader->curnode->type == XML_NAMESPACE_DECL) { in xmlTextReaderReadAttributeValue()
2902 xmlNsPtr ns = (xmlNsPtr) reader->curnode; in xmlTextReaderReadAttributeValue()
2914 reader->curnode = reader->faketext; in xmlTextReaderReadAttributeValue()
2916 if (reader->curnode->next == NULL) in xmlTextReaderReadAttributeValue()
2918 reader->curnode = reader->curnode->next; in xmlTextReaderReadAttributeValue()
2976 if (reader->curnode != NULL) in xmlTextReaderAttributeCount()
2977 node = reader->curnode; in xmlTextReaderAttributeCount()
3018 if (reader->curnode != NULL) in xmlTextReaderNodeType()
3019 node = reader->curnode; in xmlTextReaderNodeType()
3088 if (reader->curnode != NULL) in xmlTextReaderIsEmptyElement()
3117 if (reader->curnode != NULL) in xmlTextReaderLocalName()
3118 node = reader->curnode; in xmlTextReaderLocalName()
3148 if (reader->curnode != NULL) in xmlTextReaderConstLocalName()
3149 node = reader->curnode; in xmlTextReaderConstLocalName()
3181 if (reader->curnode != NULL) in xmlTextReaderName()
3182 node = reader->curnode; in xmlTextReaderName()
3256 if (reader->curnode != NULL) in xmlTextReaderConstName()
3257 node = reader->curnode; in xmlTextReaderConstName()
3323 if (reader->curnode != NULL) in xmlTextReaderPrefix()
3324 node = reader->curnode; in xmlTextReaderPrefix()
3355 if (reader->curnode != NULL) in xmlTextReaderConstPrefix()
3356 node = reader->curnode; in xmlTextReaderConstPrefix()
3387 if (reader->curnode != NULL) in xmlTextReaderNamespaceUri()
3388 node = reader->curnode; in xmlTextReaderNamespaceUri()
3415 if (reader->curnode != NULL) in xmlTextReaderConstNamespaceUri()
3416 node = reader->curnode; in xmlTextReaderConstNamespaceUri()
3484 if (reader->curnode != NULL) { in xmlTextReaderDepth()
3485 if ((reader->curnode->type == XML_ATTRIBUTE_NODE) || in xmlTextReaderDepth()
3486 (reader->curnode->type == XML_NAMESPACE_DECL)) in xmlTextReaderDepth()
3508 if (reader->curnode != NULL) in xmlTextReaderHasAttributes()
3509 node = reader->curnode; in xmlTextReaderHasAttributes()
3535 if (reader->curnode != NULL) in xmlTextReaderHasValue()
3536 node = reader->curnode; in xmlTextReaderHasValue()
3570 if (reader->curnode != NULL) in xmlTextReaderValue()
3571 node = reader->curnode; in xmlTextReaderValue()
3616 if (reader->curnode != NULL) in xmlTextReaderConstValue()
3617 node = reader->curnode; in xmlTextReaderConstValue()
3934 if (reader->curnode != NULL) in xmlTextReaderCurrentNode()
3935 return(reader->curnode); in xmlTextReaderCurrentNode()
3956 if (reader->curnode != NULL) in xmlTextReaderPreserve()
3957 cur = reader->curnode; in xmlTextReaderPreserve()
4656 if (reader->curnode != NULL) in xmlTextReaderIsNamespaceDecl()
4657 node = reader->curnode; in xmlTextReaderIsNamespaceDecl()
5195 reader->curnode = NULL; in xmlTextReaderSetup()
5363 ret->curnode = NULL; in xmlReaderWalker()
5565 reader->curnode = NULL; in xmlReaderNewWalker()