MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / FirstChild

Method FirstChild

cpp/tinyxml/tinyxml.cpp:342–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 5

GetTextMethod · 0.45
ChildMethod · 0.45
VisitEnterMethod · 0.45
VisitExitMethod · 0.45
ReloadNodeMethod · 0.45

Calls 2

TiXmlHandleClass · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected