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

Method FirstChild

Libraries/tinyxml/tinyxml.cpp:378–387  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

376}
377
378const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
379{
380 const TiXmlNode* node;
381 for ( node = firstChild; node; node = node->next )
382 {
383 if ( strcmp( node->Value(), _value ) == 0 )
384 return node;
385 }
386 return 0;
387}
388
389
390const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const

Callers 15

FirstChildFunction · 0.45
DeepCloneMethod · 0.45
ParseDeepMethod · 0.45
DeepCopyMethod · 0.45
LoadFromAbsMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
CheckGenericTypeFunction · 0.45
LoadMethod · 0.45
LoadMethod · 0.45
LoadMethod · 0.45

Calls 2

TiXmlHandleClass · 0.70
ValueMethod · 0.45

Tested by 1

mainFunction · 0.36