Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:Previous

368 const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const
370 if ( !previous )
376 assert( previous->parent == this );
377 return previous->NextSibling();
381 TiXmlNode* TiXmlNode::IterateChildren( TiXmlNode* previous )
383 if ( !previous )
389 assert( previous->parent == this );
390 return previous->NextSibling();
394 const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const
396 if ( !previous )
402 assert( previous->parent == this );
403 return previous->NextSibling( val );
407 TiXmlNode* TiXmlNode::IterateChildren( const char * val, TiXmlNode* previous )
409 if ( !previous )
415 assert( previous->parent == this );
416 return previous->NextSibling( val );
1180 const TiXmlAttribute* TiXmlAttribute::Previous() const
1189 TiXmlAttribute* TiXmlAttribute::Previous()