MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / NextSiblingElement

Method NextSiblingElement

examples/ThirdPartyLibs/tinyxml2/tinyxml2.cpp:1020–1031  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1018}
1019
1020const XMLElement* XMLNode::NextSiblingElement(const char* name) const
1021{
1022 for (const XMLNode* node = _next; node; node = node->_next)
1023 {
1024 const XMLElement* element = node->ToElementWithName(name);
1025 if (element)
1026 {
1027 return element;
1028 }
1029 }
1030 return 0;
1031}
1032
1033const XMLElement* XMLNode::PreviousSiblingElement(const char* name) const
1034{

Callers 15

NextSiblingElementFunction · 0.80
parseAssetsMethod · 0.80
parseDefaultsMethod · 0.80
parseRootLevelMethod · 0.80
parseBodyMethod · 0.80
parseMJCFStringMethod · 0.80
ParseUserDataFunction · 0.80
UrdfParser.cppFile · 0.80
loadUrdfMethod · 0.80
loadSDFMethod · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected