MCPcopy Create free account
hub / github.com/bruderstein/nppPluginManager / Find

Method Find

TinyXml/src/tinyxml.cpp:1107–1117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1105}
1106
1107TiXmlAttribute* TiXmlAttributeSet::Find( const TCHAR * name ) const
1108{
1109 TiXmlAttribute* node;
1110
1111 for( node = sentinel.next; node != &sentinel; node = node->next )
1112 {
1113 if ( node->name == name )
1114 return node;
1115 }
1116 return 0;
1117}
1118
1119
1120#ifdef TIXML_USE_STL

Callers 6

RemoveAttributeMethod · 0.80
AttributeMethod · 0.80
QueryIntAttributeMethod · 0.80
QueryDoubleAttributeMethod · 0.80
SetAttributeMethod · 0.80
ParseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected