Lines Matching refs:label
94 void CumulativeLogger::AddPair(const std::string &label, uint64_t delta_time) {
98 if (histograms_.find(label) == histograms_.end()) {
102 histograms_[label] = new Histogram<uint64_t>(label.c_str(), 50, max_buckets);
104 histograms_[label]->AddValue(delta_time);
134 DCHECK(new_split_label != NULL) << "Starting split (" << new_split_label << ") with null label.";
147 // Ends the current split and starts the one given by the label.
151 DCHECK(new_split_label != NULL) << "New split (" << new_split_label << ") with null label.";
195 TimingLogger::ScopedSplit::ScopedSplit(const char* label, TimingLogger* timing_logger) {
196 DCHECK(label != NULL) << "New scoped split (" << label << ") with null label.";
197 CHECK(timing_logger != NULL) << "New scoped split (" << label << ") without TimingLogger.";
199 label_ = label;
251 void TimingLogger::ScopedSplit::TailInsertSplit(const char* label) {
266 << "Begin: " << label;
269 label_ = label;
273 ATRACE_BEGIN(label);