Home | History | Annotate | Download | only in metrics

Lines Matching defs:count

85   HistogramBase::Count count;
87 it->Get(&min, &max, &count);
90 EXPECT_EQ(100, count);
94 it->Get(&min, &max, &count);
97 EXPECT_EQ(200, count);
100 it->Get(&min, &max, &count);
103 EXPECT_EQ(-300, count);
129 HistogramBase::Count count;
131 it->Get(&min, &max, &count);
134 EXPECT_EQ(2, count);
139 it->Get(&min, &max, &count);
142 EXPECT_EQ(3, count);
157 HistogramBase::Count count;
158 EXPECT_DCHECK_DEATH(it->Get(&min, &max, &count));