HomeSort by relevance Sort by last modified time
    Searched defs:NextSibling (Results 1 - 3 of 3) sorted by null

  /external/tinyxml/
tinyxml.cpp 377 return previous->NextSibling();
390 return previous->NextSibling();
403 return previous->NextSibling( val );
416 return previous->NextSibling( val );
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
431 TiXmlNode* TiXmlNode::NextSibling( const char * _value )
480 node = node->NextSibling() )
494 node = node->NextSibling() )
508 node = node->NextSibling( _value ) )
522 node = node->NextSibling( _value )
    [all...]
tinyxml.h 506 for( child = parent->FirstChild(); child; child = child->NextSibling() )
577 const TiXmlNode* NextSibling( const std::string& _value) const { return NextSibling (_value.c_str ()); } ///< STL std::string form.
578 TiXmlNode* NextSibling( const std::string& _value) { return NextSibling (_value.c_str ()); } ///< STL std::string form.
582 const TiXmlNode* NextSibling() const { return next; }
583 TiXmlNode* NextSibling() { return next; }
586 const TiXmlNode* NextSibling( const char * ) const;
587 TiXmlNode* NextSibling( const char * );
590 Calls NextSibling and ToElement. Will skip all non-Elemen
    [all...]
  /external/tinyxml2/
tinyxml2.h 508 const XMLNode* NextSibling() const { return next; }
509 XMLNode* NextSibling() { return next; }
    [all...]

Completed in 58 milliseconds