Lines Matching refs:Stat
161 for (auto *Stat : Stats) { in reset() local
164 Stat->Initialized = false; in reset()
165 Stat->Value = 0; in reset()
181 for (TrackingStatistic *Stat : Stats.Stats) { in PrintStatistics()
182 MaxValLen = std::max(MaxValLen, (unsigned)utostr(Stat->getValue()).size()); in PrintStatistics()
184 std::max(MaxDebugTypeLen, (unsigned)std::strlen(Stat->getDebugType())); in PrintStatistics()
195 for (TrackingStatistic *Stat : Stats.Stats) in PrintStatistics()
196 OS << format("%*" PRIu64 " %-*s - %s\n", MaxValLen, Stat->getValue(), in PrintStatistics()
197 MaxDebugTypeLen, Stat->getDebugType(), Stat->getDesc()); in PrintStatistics()
212 for (const TrackingStatistic *Stat : Stats.Stats) { in PrintStatisticsJSON() local
214 assert(yaml::needsQuotes(Stat->getDebugType()) == yaml::QuotingType::None && in PrintStatisticsJSON()
216 assert(yaml::needsQuotes(Stat->getName()) == yaml::QuotingType::None && in PrintStatisticsJSON()
218 OS << "\t\"" << Stat->getDebugType() << '.' << Stat->getName() << "\": " in PrintStatisticsJSON()
219 << Stat->getValue(); in PrintStatisticsJSON()
261 for (const auto &Stat : StatInfo->statistics()) in GetStatistics() local
262 ReturnStats.emplace_back(Stat->getName(), Stat->getValue()); in GetStatistics()