Home
last modified time | relevance | path

Searched refs:tagCounts (Results 1 – 1 of 1) sorted by relevance

/thrift-3.4.0/compiler/cpp/tests/catch/
Dcatch.hpp5880 std::map<std::string, TagInfo> tagCounts; in listTags() local
5892 std::map<std::string, TagInfo>::iterator countIt = tagCounts.find( lcaseTagName ); in listTags()
5893 if( countIt == tagCounts.end() ) in listTags()
5894 countIt = tagCounts.insert( std::make_pair( lcaseTagName, TagInfo() ) ).first; in listTags()
5899 for( std::map<std::string, TagInfo>::const_iterator countIt = tagCounts.begin(), in listTags()
5900 countItEnd = tagCounts.end(); in listTags()
5911 Catch::cout() << pluralise( tagCounts.size(), "tag" ) << '\n' << std::endl; in listTags()
5912 return tagCounts.size(); in listTags()