MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / Find

Method Find

engine/source/persistence/tinyXML/tinyxml.cpp:1520–1528  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1518
1519#ifdef TIXML_USE_STL
1520TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const
1521{
1522 for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )
1523 {
1524 if ( node->name == name )
1525 return node;
1526 }
1527 return 0;
1528}
1529
1530TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name )
1531{

Callers 8

RemoveAttributeMethod · 0.80
AttributeMethod · 0.80
QueryIntAttributeMethod · 0.80
QueryBoolAttributeMethod · 0.80
QueryDoubleAttributeMethod · 0.80
QueryValueAttributeMethod · 0.80
ParseMethod · 0.80

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected