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

Method IterateChildren

Libraries/tinyxml/tinyxml.cpp:402–413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

400
401
402const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const
403{
404 if ( !previous )
405 {
406 return FirstChild();
407 }
408 else
409 {
410 assert( previous->parent == this );
411 return previous->NextSibling();
412 }
413}
414
415
416const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const

Callers 3

LoadMethod · 0.45
LoadMethod · 0.45
mainFunction · 0.45

Calls 2

FirstChildFunction · 0.85
NextSiblingMethod · 0.45

Tested by 1

mainFunction · 0.36