MCPcopy Create free account
hub / github.com/DFHack/dfhack / FirstChild

Method FirstChild

depends/tinyxml/tinyxml.cpp:361–370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359}
360
361const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
362{
363 const TiXmlNode* node;
364 for ( node = firstChild; node; node = node->next )
365 {
366 if ( strcmp( node->Value(), _value ) == 0 )
367 return node;
368 }
369 return 0;
370}
371
372
373const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const

Callers 5

loadFileMethod · 0.45
GetTextMethod · 0.45
ChildMethod · 0.45
VisitEnterMethod · 0.45
VisitExitMethod · 0.45

Calls 2

TiXmlHandleClass · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected