reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
78 auto Result = Us.Counters.find(CounterName); 79 if (Result != Us.Counters.end()) { 102 return instance().Counters[ID].IsSet; 108 auto Result = Us.Counters.find(ID); 109 assert(Result != Us.Counters.end() && "Asking about a non-set counter"); 116 Us.Counters[ID].Count = Count; 134 return std::make_pair(RegisteredCounters[ID], Counters.lookup(ID).Desc); 163 Counters[Result] = {}; 164 Counters[Result].Desc = Desc;lib/Support/DebugCounter.cpp
97 CounterInfo &Counter = Counters[CounterID]; 110 CounterInfo &Counter = Counters[CounterID]; 129 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip 129 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip 130 << "," << Us.Counters[CounterID].StopAfter << "}\n";