MCPcopy Create free account
hub / github.com/cemu-project/Cemu / NextSiblingElement

Method NextSiblingElement

src/util/tinyxml2/tinyxml2.cpp:964–973  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

962
963
964 const XMLElement* XMLNode::NextSiblingElement(const char* name) const
965 {
966 for (const XMLNode* node = _next; node; node = node->_next) {
967 const XMLElement* element = node->ToElementWithName(name);
968 if (element) {
969 return element;
970 }
971 }
972 return 0;
973 }
974
975
976 const XMLElement* XMLNode::PreviousSiblingElement(const char* name) const

Callers 4

parse_xml_contentFunction · 0.80
ACPUpdateSaveTimeStampFunction · 0.80
NextSiblingElementFunction · 0.80
getMethod · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected