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

Method FirstChildElement

cpp/tinyxml/tinyxml.cpp:433–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

431}
432
433const TiXmlElement* TiXmlNode::FirstChildElement() const
434{
435 const TiXmlNode* node;
436
437 for ( node = FirstChild();
438 node;
439 node = node->NextSibling() )
440 {
441 if ( node->ToElement() )
442 return node->ToElement();
443 }
444 return 0;
445}
446
447
448const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const

Callers 15

ChildElementMethod · 0.45
ReadXMLMethod · 0.45
ReadXMLValueMethod · 0.45
GroupMethod · 0.45
ReadXMLMethod · 0.45
ParseOptionsXMLMethod · 0.45
ReadXMLMethod · 0.45
ReadCacheMethod · 0.45
ReadButtonsMethod · 0.45
ReadScenesMethod · 0.45
ReadXMLMethod · 0.45
ReadDeviceProtocolXMLMethod · 0.45

Calls 3

TiXmlHandleClass · 0.85
NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by 1

LoadProductXMLMethod · 0.36