MCPcopy Create free account
hub / github.com/bruderstein/nppPluginManager / FirstChild

Method FirstChild

TinyXml/src/tinyxml.cpp:301–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

299}
300
301TiXmlNode* TiXmlNode::FirstChild( const TCHAR * _value ) const
302{
303 TiXmlNode* node;
304 for ( node = firstChild; node; node = node->next )
305 {
306 if ( node->SValue() == TIXML_STRING( _value ))
307 return node;
308 }
309 return 0;
310}
311
312TiXmlNode* TiXmlNode::LastChild( const TCHAR * _value ) const
313{

Callers 5

ChildMethod · 0.45
parsePluginFileMethod · 0.45
addStepsMethod · 0.45
installPluginsMethod · 0.45
createMethod · 0.45

Calls 2

TiXmlHandleClass · 0.85
SValueMethod · 0.80

Tested by

no test coverage detected