Searched refs:AddCount (Results 1 – 7 of 7) sorted by relevance
/external/libchrome/base/metrics/ |
D | sparse_histogram_unittest.cc | 71 histogram->AddCount(100, 15); in TEST_F() 76 histogram->AddCount(100, 15); in TEST_F() 77 histogram->AddCount(101, 25); in TEST_F()
|
D | sparse_histogram.cc | 56 AddCount(value, 1); in Add() 59 void SparseHistogram::AddCount(Sample value, int count) { in AddCount() function in base::SparseHistogram
|
D | histogram_unittest.cc | 245 histogram->AddCount(20, 15); in TEST_F() 246 histogram->AddCount(30, 14); in TEST_F() 253 histogram->AddCount(20, 25); in TEST_F() 254 histogram->AddCount(30, 24); in TEST_F()
|
D | sparse_histogram.h | 49 void AddCount(Sample value, int count) override;
|
D | histogram_base.h | 132 virtual void AddCount(Sample value, int count) = 0;
|
D | histogram.h | 188 void AddCount(Sample value, int count) override;
|
D | histogram.cc | 281 AddCount(value, 1); in Add() 284 void Histogram::AddCount(int value, int count) { in AddCount() function in base::Histogram
|