Home | History | Annotate | Download | only in metrics

Lines Matching full:boundary_value

201 // strictly less than |boundary_value| -- this prevents you from running into
206 #define HISTOGRAM_ENUMERATION(name, sample, boundary_value) \
208 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
209 boundary_value + 1, base::HistogramBase::kNoFlags))
238 #define DHISTOGRAM_ENUMERATION(name, sample, boundary_value) \
239 HISTOGRAM_ENUMERATION(name, sample, boundary_value)
283 #define DHISTOGRAM_ENUMERATION(name, sample, boundary_value) \
284 DISCARD_3_ARGUMENTS(name, sample, boundary_value)
343 // The samples should always be strictly less than |boundary_value|. For more
345 #define UMA_HISTOGRAM_ENUMERATION(name, sample, boundary_value) \
347 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
348 boundary_value + 1, base::HistogramBase::kUmaTargetedHistogramFlag))