Searched defs:FirstChild (Results 1 - 4 of 4) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlelement.h166 XmlChild * FirstChild();
167 const XmlChild * FirstChild() const function in class:buzz::XmlElement
168 { return const_cast<XmlElement *>(this)->FirstChild(); }
H A Dxmlelement.cc251 XmlElement::FirstChild() { function in class:buzz::XmlElement
451 for (child = FirstChild(); child; child = next_child) {
/external/tinyxml/
H A Dtinyxml.cpp322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const function in class:TiXmlNode
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value ) function in class:TiXmlNode
372 return FirstChild();
385 return FirstChild();
398 return FirstChild( val );
411 return FirstChild( val );
478 for ( node = FirstChild();
492 for ( node = FirstChild();
506 for ( node = FirstChild( _value );
520 for ( node = FirstChild( _valu
1617 TiXmlHandle TiXmlHandle::FirstChild() const function in class:TiXmlHandle
1629 TiXmlHandle TiXmlHandle::FirstChild( const char * value ) const function in class:TiXmlHandle
[all...]
H A Dtinyxml.h486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children. function in class:TiXmlNode
487 TiXmlNode* FirstChild() { return firstChild; } function in class:TiXmlNode
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. function in class:TiXmlNode
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form. function in class:TiXmlNode
506 for( child = parent->FirstChild(); child; child = child->NextSibling() )
1408 TiXmlElement* child2 = docHandle.FirstChild( "Documen
1486 TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() ); } function in class:TiXmlHandle
[all...]

Completed in 82 milliseconds