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

Method FirstChildElement

TinyXml/src/tinyxml.cpp:382–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

380}
381
382TiXmlElement* TiXmlNode::FirstChildElement() const
383{
384 TiXmlNode* node;
385
386 for ( node = FirstChild();
387 node;
388 node = node->NextSibling() )
389 {
390 if ( node->ToElement() )
391 return node->ToElement();
392 }
393 return 0;
394}
395
396TiXmlElement* TiXmlNode::FirstChildElement( const TCHAR * _value ) const
397{

Callers 10

ChildElementMethod · 0.45
processActionsFileFunction · 0.45
actionsFileHasActionsFunction · 0.45
startupChecksFunction · 0.45
addPluginNamesMethod · 0.45
parsePluginFileMethod · 0.45
addStepsMethod · 0.45
getGpupDocumentMethod · 0.45
installPluginsMethod · 0.45
removePluginsMethod · 0.45

Calls 3

TiXmlHandleClass · 0.85
ToElementMethod · 0.80
NextSiblingMethod · 0.45

Tested by

no test coverage detected