Home | History | Annotate | Download | only in metrics

Lines Matching refs:custom_ranges

212 // std::vector<int> list provided via |custom_ranges|. See comments above
213 // CustomRanges::FactoryGet about the requirement of |custom_ranges|.
216 #define HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \
218 base::CustomHistogram::FactoryGet(name, custom_ranges, \
240 #define DHISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \
241 HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges)
286 #define DHISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \
287 DISCARD_3_ARGUMENTS(name, sample, custom_ranges)
356 #define UMA_HISTOGRAM_CUSTOM_ENUMERATION(name, sample, custom_ranges) \
358 base::CustomHistogram::FactoryGet(name, custom_ranges, \
639 // |custom_ranges| contains a vector of limits on ranges. Each limit should be
644 const std::vector<Sample>& custom_ranges,
672 static bool ValidateCustomRanges(const std::vector<Sample>& custom_ranges);
674 const std::vector<Sample>& custom_ranges);