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

Method NextSibling

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:367–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367const TiXmlNode* TiXmlNode::NextSibling(const char* _value) const
368{
369 const TiXmlNode* node;
370 for (node = next; node; node = node->next)
371 {
372 if (xr_strcmp(node->Value(), _value) == 0)
373 return node;
374 }
375 return 0;
376}
377
378const TiXmlNode* TiXmlNode::PreviousSibling(const char* _value) const
379{

Callers 9

GetNodesNumMethod · 0.45
SearchForAttributeMethod · 0.45
IterateChildrenMethod · 0.45
FirstChildElementMethod · 0.45
NextSiblingElementMethod · 0.45
PrintMethod · 0.45
CopyToMethod · 0.45
AcceptMethod · 0.45
ChildMethod · 0.45

Calls 2

xr_strcmpFunction · 0.50
ValueMethod · 0.45

Tested by

no test coverage detected