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

Method LastChildElement

external/tinyxml2.cpp:984–993  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982
983
984const XMLElement* XMLNode::LastChildElement( const char* name ) const
985{
986 for( const XMLNode* node = _lastChild; node; node = node->_prev ) {
987 const XMLElement* element = node->ToElementWithName( name );
988 if ( element ) {
989 return element;
990 }
991 }
992 return 0;
993}
994
995
996const XMLElement* XMLNode::NextSiblingElement( const char* name ) const

Callers 1

LastChildElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected