MCPcopy Create free account
hub / github.com/9miao/CrossApp / NextSiblingElement

Method NextSiblingElement

CrossApp/support/tinyxml2/tinyxml2.cpp:753–762  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

751
752
753const XMLElement* XMLNode::NextSiblingElement( const char* value ) const
754{
755 for( XMLNode* element=this->_next; element; element = element->_next ) {
756 if ( element->ToElement()
757 && (!value || XMLUtil::StringEqual( value, element->Value() ))) {
758 return element->ToElement();
759 }
760 }
761 return 0;
762}
763
764
765const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const

Callers 6

layoutViewFunction · 0.80
parserXmlFunction · 0.80
getXMLNodeForKeyFunction · 0.80
CAUserDefault.cppFile · 0.80
NextSiblingElementFunction · 0.80

Calls 2

StringEqualFunction · 0.85
ValueMethod · 0.80

Tested by

no test coverage detected