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

Method FirstChild

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:319–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317}
318
319const TiXmlNode* TiXmlNode::FirstChild(const char* _value) const
320{
321 const TiXmlNode* node;
322 for (node = firstChild; node; node = node->next)
323 {
324 if (xr_strcmp(node->Value(), _value) == 0)
325 return node;
326 }
327 return 0;
328}
329
330const TiXmlNode* TiXmlNode::LastChild(const char* _value) const
331{

Callers 8

NavigateToNodeMethod · 0.45
ReadMethod · 0.45
GetNodesNumMethod · 0.45
SearchForAttributeMethod · 0.45
GetTextMethod · 0.45
ChildMethod · 0.45
VisitEnterMethod · 0.45
VisitExitMethod · 0.45

Calls 3

TiXmlHandleClass · 0.85
xr_strcmpFunction · 0.50
ValueMethod · 0.45

Tested by

no test coverage detected