MCPcopy Create free account
hub / github.com/OpenMW/openmw / Find

Method Find

extern/oics/tinyxml/tinyxml.cpp:1544–1552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1542
1543#ifdef TIXML_USE_STL
1544const TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const
1545{
1546 for( const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )
1547 {
1548 if ( node->name == name )
1549 return node;
1550 }
1551 return 0;
1552}
1553
1554/*
1555TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name )

Callers 6

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

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected