MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / NextSiblingElement

Method NextSiblingElement

Dependencies/tinyxml2/src/tinyxml2.cpp:961–970  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 5

OnDeserializeMethod · 0.80
OnDeserializeMethod · 0.80
OnDeserializeMethod · 0.80
OnDeserializeMethod · 0.80
NextSiblingElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected