Searched refs:FirstChild (Results 1 - 5 of 5) sorted by relevance

/external/skia/src/ports/
H A DSkXMLParser_tinyxml.cpp39 const TiXmlNode* node = elem->FirstChild();
/external/tinyxml/
H A Dxmltest.cpp161 node = doc.FirstChild( "ToDo" );
223 node = todoElement->FirstChild( "Item" );
260 node = node->FirstChild();
266 node = node->FirstChild();
276 for( node = doc.FirstChild();
317 for( node = todoElement->FirstChild( "Item" );
373 TiXmlHandle commentHandle = docHandle.FirstChildElement( "room" ).FirstChild();
374 TiXmlHandle textHandle = docHandle.FirstChildElement( "room" ).ChildElement( "door", 0 ).FirstChild();
385 TiXmlDeclaration* declaration = doc.FirstChild()->ToDeclaration();
569 text = latinDoc.FirstChildElement()->FirstChild()
[all...]
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...]
/external/srec/tools/grxmlcompile/
H A Dgrxmldoc.cpp170 for( child = node.FirstChild(); child; child = child->NextSibling() )

Completed in 64 milliseconds