MCPcopy Create free account
hub / github.com/SOUI2/soui / NextSiblingElement

Method NextSiblingElement

tools/src/uiresbuilder/tinyxml/tinyxml.cpp:482–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

480
481
482const TiXmlElement* TiXmlNode::NextSiblingElement() const
483{
484 const TiXmlNode* node;
485
486 for ( node = NextSibling();
487 node;
488 node = node->NextSibling() )
489 {
490 if ( node->ToElement() )
491 return node->ToElement();
492 }
493 return 0;
494}
495
496
497const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const

Callers 4

ParseLayoutFunction · 0.45
ParseUIDefFileFunction · 0.45
_tmainFunction · 0.45
ChildElementMethod · 0.45

Calls 2

NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by

no test coverage detected