Home | History | Annotate | Download | only in metrics

Lines Matching refs:histograms_

88   HistogramBase*& registered = top_->histograms_[name];
197 const HistogramMap::const_iterator it = top_->histograms_.find(name);
198 return it != top_->histograms_.end() ? it->second : nullptr;
250 const HistogramMap::const_iterator it = top_->histograms_.find(name);
251 if (it != top_->histograms_.end())
265 const HistogramMap::const_iterator it = top_->histograms_.find(name);
266 if (it != top_->histograms_.end())
283 return top_->histograms_.size();
291 const HistogramMap::iterator found = top_->histograms_.find(name);
292 if (found == top_->histograms_.end())
304 top_->histograms_.erase(found);
342 out.reserve(top_->histograms_.size());
343 for (const auto& entry : top_->histograms_)