MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / NextSiblingElement

Method NextSiblingElement

Libraries/tinyxml/tinyxml.cpp:499–511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

497
498
499const TiXmlElement* TiXmlNode::NextSiblingElement() const
500{
501 const TiXmlNode* node;
502
503 for ( node = NextSibling();
504 node;
505 node = node->NextSibling() )
506 {
507 if ( node->ToElement() )
508 return node->ToElement();
509 }
510 return 0;
511}
512
513
514const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const

Callers 15

LoadMethod · 0.45
ReadPaletteFromXMLFunction · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45

Calls 3

NextSiblingFunction · 0.85
NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by 1

mainFunction · 0.36