MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / NextSiblingElement

Method NextSiblingElement

sourcecommon/tinyxml2.cpp:759–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

757
758
759const XMLElement* XMLNode::NextSiblingElement( const char* value ) const
760{
761 for( XMLNode* node=this->_next; node; node = node->_next ) {
762 const XMLElement* element = node->ToElement();
763 if ( element
764 && (!value || XMLUtil::StringEqual( value, node->Value() ))) {
765 return element;
766 }
767 }
768 return 0;
769}
770
771
772const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const

Callers 6

NextSiblingElementFunction · 0.80
rsMethod · 0.80
LoadMethod · 0.80
LoadMethod · 0.80
LoadMethod · 0.80
LoadMethod · 0.80

Calls 1

ValueMethod · 0.80

Tested by

no test coverage detected