MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / Find

Method Find

cpp/tinyxml/tinyxml.cpp:1554–1562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1552
1553#ifdef TIXML_USE_STL
1554const TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const
1555{
1556 for( const TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )
1557 {
1558 if ( node->name == name )
1559 return node;
1560 }
1561 return 0;
1562}
1563
1564/*
1565TiXmlAttribute* 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.45

Tested by

no test coverage detected