MCPcopy Create free account
hub / github.com/SOUI2/soui / Find

Method Find

tools/src/uiresbuilder/tinyxml/tinyxml.cpp:1567–1575  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1565
1566#ifdef TIXML_USE_STL
1567TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const
1568{
1569 for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )
1570 {
1571 if ( node->name == name )
1572 return node;
1573 }
1574 return 0;
1575}
1576
1577TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name )
1578{

Callers 8

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

Calls 1

c_strMethod · 0.45

Tested by

no test coverage detected