MCPcopy Create free account
hub / github.com/OpenMW/openmw / FirstChild

Method FirstChild

extern/oics/tinyxml/tinyxml.cpp:356–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354}
355
356const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
357{
358 const TiXmlNode* node;
359 for ( node = firstChild; node; node = node->next )
360 {
361 if ( strcmp( node->Value(), _value ) == 0 )
362 return node;
363 }
364 return 0;
365}
366
367
368const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const

Callers 4

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