Lines Matching defs:next
159 // Return true if the next characters in the stream are any of the endTag sequences.
314 the next one. If the previous child is null, it returns the
352 TiXmlNode* NextSibling() const { return next; }
418 TiXmlNode* next;
437 TiXmlAttribute() : prev( 0 ), next( 0 ) {}
440 TiXmlAttribute( const std::string& _name, const std::string& _value ) : name( _name ), value( _value ), prev( 0 ), next( 0 ) {}
453 /// Get the next sibling attribute in the DOM. Returns null at end.
464 returns: the next char after the value end quote
484 TiXmlAttribute* next;
493 which has to implement a next() and previous() method. Which makes
509 TiXmlAttribute* First() const { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
571 Attribtue parsing starts: next char past '<'
572 returns: next char past '>'
609 returns: next char past '>'
634 returns: next char past '>'
686 // Attribtue parsing starts: next char past '<'
687 // returns: next char past '>'
721 returns: next char past '>'