MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / FirstChild

Method FirstChild

engine/source/persistence/tinyXML/tinyxml.cpp:345–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

343}
344
345const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
346{
347 const TiXmlNode* node;
348 for ( node = firstChild; node; node = node->next )
349 {
350 if ( strcmp( node->Value(), _value ) == 0 )
351 return node;
352 }
353 return 0;
354}
355
356
357const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const

Callers 10

readCommentMethod · 0.45
getTextMethod · 0.45
removeTextMethod · 0.45
getDataMethod · 0.45
parseElementMethod · 0.45
parseCustomElementMethod · 0.45
parseCustomNodeMethod · 0.45
parseElementMethod · 0.45
GetTextMethod · 0.45
ChildMethod · 0.45

Calls 2

TiXmlHandleClass · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected