MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / LastChild

Method LastChild

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:330–339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

328}
329
330const TiXmlNode* TiXmlNode::LastChild(const char* _value) const
331{
332 const TiXmlNode* node;
333 for (node = lastChild; node; node = node->prev)
334 {
335 if (xr_strcmp(node->Value(), _value) == 0)
336 return node;
337 }
338 return 0;
339}
340
341const TiXmlNode* TiXmlNode::IterateChildren(const TiXmlNode* previous) const
342{

Callers 1

VisitEnterMethod · 0.45

Calls 2

xr_strcmpFunction · 0.50
ValueMethod · 0.45

Tested by

no test coverage detected