Home | History | Annotate | Download | only in tinyxml2

Lines Matching defs:NextSiblingElement

512     const XMLElement*    NextSiblingElement( const char* value=0 ) const;

513 XMLElement* NextSiblingElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( _value ) ); }
1231 XMLElement* child2 = child->NextSiblingElement( "Child" );
1285 XMLHandle NextSiblingElement( const char* _value=0 ) { return XMLHandle( node ? node->NextSiblingElement( _value ) : 0 ); }
1323 const XMLConstHandle NextSiblingElement( const char* _value=0 ) const { return XMLConstHandle( node ? node->NextSiblingElement( _value ) : 0 ); }