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

Method LastChild

Libraries/tinyxml/tinyxml.cpp:390–399  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

388
389
390const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
391{
392 const TiXmlNode* node;
393 for ( node = lastChild; node; node = node->prev )
394 {
395 if ( strcmp( node->Value(), _value ) == 0 )
396 return node;
397 }
398 return 0;
399}
400
401
402const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const

Callers 3

LastChildFunction · 0.45
VisitEnterMethod · 0.45
mainFunction · 0.45

Calls 1

ValueMethod · 0.45

Tested by 1

mainFunction · 0.36