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

Method LastChildElement

examples/ThirdPartyLibs/tinyxml2/tinyxml2.cpp:1007–1018  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1005}
1006
1007const XMLElement* XMLNode::LastChildElement(const char* name) const
1008{
1009 for (const XMLNode* node = _lastChild; node; node = node->_prev)
1010 {
1011 const XMLElement* element = node->ToElementWithName(name);
1012 if (element)
1013 {
1014 return element;
1015 }
1016 }
1017 return 0;
1018}
1019
1020const XMLElement* XMLNode::NextSiblingElement(const char* name) const
1021{

Callers 1

LastChildElementFunction · 0.80

Calls 1

ToElementWithNameMethod · 0.80

Tested by

no test coverage detected