MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / FirstChildElement

Method FirstChildElement

Libraries/tinyxml/tinyxml.cpp:469–481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467}
468
469const TiXmlElement* TiXmlNode::FirstChildElement() const
470{
471 const TiXmlNode* node;
472
473 for ( node = FirstChild();
474 node;
475 node = node->NextSibling() )
476 {
477 if ( node->ToElement() )
478 return node->ToElement();
479 }
480 return 0;
481}
482
483
484const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const

Callers 15

LoadMethod · 0.45
ReadPaletteFromXMLFunction · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
ParseXMLMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45

Calls 4

FirstChildFunction · 0.85
TiXmlHandleClass · 0.70
NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by 1

mainFunction · 0.36