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

Method Find

ogsr_engine/xrCore/XML_Parser/tinyxml.cpp:1460–1468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1458
1459#ifdef TIXML_USE_STL
1460const TiXmlAttribute* TiXmlAttributeSet::Find(const xr_string& name) const
1461{
1462 for (const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next)
1463 {
1464 if (node->name == name)
1465 return node;
1466 }
1467 return 0;
1468}
1469
1470/*
1471TiXmlAttribute* TiXmlAttributeSet::Find( const xr_string& name )

Callers 6

RemoveAttributeMethod · 0.45
AttributeMethod · 0.45
QueryIntAttributeMethod · 0.45
QueryDoubleAttributeMethod · 0.45
SetAttributeMethod · 0.45
ParseMethod · 0.45

Calls 2

xr_strcmpFunction · 0.50
c_strMethod · 0.45

Tested by

no test coverage detected