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

Method LastChildElement

Source/ThirdParty/tinyxml2/tinyxml2.cpp:952–961  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

950
951
952const XMLElement* XMLNode::LastChildElement( const char* name ) const
953{
954 for( const XMLNode* node = _lastChild; node; node = node->_prev ) {
955 const XMLElement* element = node->ToElementWithName( name );
956 if ( element ) {
957 return element;
958 }
959 }
960 return 0;
961}
962
963
964const XMLElement* XMLNode::NextSiblingElement( const char* name ) const

Callers 1

LastChildElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected