MCPcopy Create free account
hub / github.com/crossuo/crossuo / FirstChildElement

Method FirstChildElement

external/tinyxml2.cpp:972–981  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

970
971
972const XMLElement* XMLNode::FirstChildElement( const char* name ) const
973{
974 for( const XMLNode* node = _firstChild; node; node = node->_next ) {
975 const XMLElement* element = node->ToElementWithName( name );
976 if ( element ) {
977 return element;
978 }
979 }
980 return 0;
981}
982
983
984const XMLElement* XMLNode::LastChildElement( const char* name ) const

Callers 8

xuo_release_loadFunction · 0.80
xuo_manifest_loadFunction · 0.80
mft_entries_loadFunction · 0.80
mft_packs_loadFunction · 0.80
mft_stage_loadFunction · 0.80
mft_product_loadFunction · 0.80
mft_loadFunction · 0.80
FirstChildElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected