MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / NextSiblingElement

Method NextSiblingElement

ReClass/tinyxml2.cpp:965–974  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

963
964
965const XMLElement* XMLNode::NextSiblingElement( const char* name ) const
966{
967 for( const XMLNode* node = _next; node; node = node->_next ) {
968 const XMLElement* element = node->ToElementWithName( name );
969 if ( element ) {
970 return element;
971 }
972 }
973 return 0;
974}
975
976
977const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const

Callers 2

OnFileOpenMethod · 0.80
NextSiblingElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected