MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / FirstChildElement

Method FirstChildElement

src/tinyxml2.cpp:1024–1033  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1022
1023
1024const XMLElement* XMLNode::FirstChildElement( const char* name ) const
1025{
1026 for( const XMLNode* node = _firstChild; node; node = node->_next ) {
1027 const XMLElement* element = node->ToElementWithName( name );
1028 if ( element ) {
1029 return element;
1030 }
1031 }
1032 return 0;
1033}
1034
1035
1036const XMLElement* XMLNode::LastChildElement( const char* name ) const

Callers 4

abrcheckFunction · 0.80
parse_settings_from_xmlFunction · 0.80
get_xml_timestampFunction · 0.80
FirstChildElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected