Lines Matching refs:FirstChild
486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
487 TiXmlNode* FirstChild() { return firstChild; }
488 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
489 TiXmlNode* FirstChild( const char * value ); ///< The first child of this node with the matching 'value'. Will be null if none found.
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form.
506 for( child = parent->FirstChild(); child; child = child->NextSibling() )
634 bool NoChildren() const { return !firstChild; }
673 TiXmlNode* firstChild;
1408 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild
1427 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).Element();
1440 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).Element();
1458 TiXmlHandle FirstChild() const;
1460 TiXmlHandle FirstChild( const char * value ) const;
1486 TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() ); }