reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
114 auto it = counter_stats.find(cnt.first); 115 if(it == counter_stats.end()) { 116 counter_stats.insert({cnt.first, {cnt.second, std::vector<double>{}}}); 117 it = counter_stats.find(cnt.first); 120 CHECK_EQ(counter_stats[cnt.first].c.flags, cnt.second.flags); 136 auto it = counter_stats.find(cnt.first); 137 CHECK_NE(it, counter_stats.end()); 166 for(auto const& kv : counter_stats) { 168 auto c = Counter(uc_stat, counter_stats[kv.first].c.flags);