MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / FirstChildElement

Method FirstChildElement

Engine/lib/tinyxml/tinyxml2.cpp:994–1003  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

992
993
994const XMLElement* XMLNode::FirstChildElement( const char* name ) const
995{
996 for( const XMLNode* node = _firstChild; node; node = node->_next ) {
997 const XMLElement* element = node->ToElementWithName( name );
998 if ( element ) {
999 return element;
1000 }
1001 }
1002 return 0;
1003}
1004
1005
1006const XMLElement* XMLNode::LastChildElement( const char* name ) const

Callers 10

readDataTableMethod · 0.80
readPropertiesFunction · 0.80
readObjectsFunction · 0.80
readElementMethod · 0.80
FirstChildElementFunction · 0.80
readDataTableMethod · 0.80
readPropertiesFunction · 0.80
readObjectsFunction · 0.80
pushFirstChildElementMethod · 0.80
pushChildElementMethod · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected