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

Method NextSiblingElement

cpp/tinyxml/tinyxml.cpp:463–475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461
462
463const TiXmlElement* TiXmlNode::NextSiblingElement() const
464{
465 const TiXmlNode* node;
466
467 for ( node = NextSibling();
468 node;
469 node = node->NextSibling() )
470 {
471 if ( node->ToElement() )
472 return node->ToElement();
473 }
474 return 0;
475}
476
477
478const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const

Callers 15

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

Calls 2

NextSiblingMethod · 0.45
ToElementMethod · 0.45

Tested by 1

LoadProductXMLMethod · 0.36