Home | History | Annotate | Download | only in test

Lines Matching refs:it

45   auto it = histograms_.find(name);
46 return reinterpret_cast<Histogram*>(&it->second);
55 auto it = histograms_.find(name);
56 return reinterpret_cast<Histogram*>(&it->second);
73 const auto it = histograms_.find(name);
74 if (it == histograms_.end()) {
77 return it->second.last_;
82 const auto it = histograms_.find(name);
83 if (it == histograms_.end()) {
86 return it->second.total_;
91 for (auto& it : histograms_) {
92 it.second.last_ = -1;
93 it.second.total_ = 0;