MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / FirstChildElement

Method FirstChildElement

Source/ThirdParty/tinyxml2/tinyxml2.cpp:940–949  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

938
939
940const XMLElement* XMLNode::FirstChildElement( const char* name ) const
941{
942 for( const XMLNode* node = _firstChild; node; node = node->_next ) {
943 const XMLElement* element = node->ToElementWithName( name );
944 if ( element ) {
945 return element;
946 }
947 }
948 return 0;
949}
950
951
952const XMLElement* XMLNode::LastChildElement( const char* name ) const

Callers 15

FirstChildElementFunction · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FillContentDateMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80
FileHeader_BeginMethod · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected