Searched defs:IterateChildren (Results 1 - 4 of 4) sorted by relevance
/external/sfntly/cpp/src/test/tinyxml/ |
H A D | tinyxml.cpp | 385 const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const function in class:TiXmlNode 399 const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const function in class:TiXmlNode
|
H A D | tinyxml.h | 552 IterateChildren does the same thing with the syntax: 555 while( child = parent->IterateChildren( child ) ) 558 IterateChildren takes the previous child as input and finds 560 first. IterateChildren will return null when done. 562 const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const; 563 TiXmlNode* IterateChildren( const TiXmlNode* previous ) { function in class:TiXmlNode 564 return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( previous ) ); 567 /// This flavor of IterateChildren searches for children with a particular 'value' 568 const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const; 569 TiXmlNode* IterateChildren( cons function in class:TiXmlNode 574 const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form. function in class:TiXmlNode 575 TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form. function in class:TiXmlNode [all...] |
/external/tinyxml/ |
H A D | tinyxml.cpp | 368 const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const function in class:TiXmlNode 381 TiXmlNode* TiXmlNode::IterateChildren( TiXmlNode* previous ) function in class:TiXmlNode 394 const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const function in class:TiXmlNode 407 TiXmlNode* TiXmlNode::IterateChildren( const char * val, TiXmlNode* previous ) function in class:TiXmlNode
|
H A D | tinyxml.h | 509 IterateChildren does the same thing with the syntax: 512 while( child = parent->IterateChildren( child ) ) 515 IterateChildren takes the previous child as input and finds 517 first. IterateChildren will return null when done. 519 const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const; 520 TiXmlNode* IterateChildren( TiXmlNode* previous ); 522 /// This flavor of IterateChildren searches for children with a particular 'value' 523 const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const; 524 TiXmlNode* IterateChildren( const char * value, TiXmlNode* previous ); 527 const TiXmlNode* IterateChildren( cons function in class:TiXmlNode 528 TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form. function in class:TiXmlNode [all...] |
Completed in 58 milliseconds