Home | History | Annotate | Download | only in metrics

Lines Matching defs:histogram_type

102   DCHECK_EQ(HISTOGRAM, histogram->histogram_type());
214 DCHECK_NE(NOT_VALID_IN_RENDERER, histogram.histogram_type());
222 pickle.WriteInt(histogram.histogram_type());
242 int histogram_type;
252 !pickle.ReadInt(&iter, &histogram_type) ||
269 DCHECK_NE(NOT_VALID_IN_RENDERER, histogram_type);
273 if (histogram_type == HISTOGRAM) {
276 } else if (histogram_type == LINEAR_HISTOGRAM) {
279 } else if (histogram_type == BOOLEAN_HISTOGRAM) {
282 LOG(ERROR) << "Error Deserializing Histogram Unknown histogram_type: "
283 << histogram_type;
291 DCHECK_EQ(render_histogram->histogram_type(), histogram_type);
352 Histogram::ClassType Histogram::histogram_type() const {
795 DCHECK_EQ(LINEAR_HISTOGRAM, histogram->histogram_type());
809 Histogram::ClassType LinearHistogram::histogram_type() const {
886 DCHECK_EQ(BOOLEAN_HISTOGRAM, histogram->histogram_type());
890 Histogram::ClassType BooleanHistogram::histogram_type() const {
933 DCHECK_EQ(histogram->histogram_type(), CUSTOM_HISTOGRAM);
939 Histogram::ClassType CustomHistogram::histogram_type() const {