HomeSort by relevance Sort by last modified time
    Searched refs:AddCount (Results 1 - 7 of 7) sorted by null

  /external/libchrome/base/metrics/
sparse_histogram_unittest.cc 71 histogram->AddCount(100, 15);
76 histogram->AddCount(100, 15);
77 histogram->AddCount(101, 25);
sparse_histogram.cc 56 AddCount(value, 1);
59 void SparseHistogram::AddCount(Sample value, int count) {
sparse_histogram.h 49 void AddCount(Sample value, int count) override;
histogram_base.h 129 // cases we need to increase this value by an arbitrary integer. AddCount
132 virtual void AddCount(Sample value, int count) = 0;
histogram_unittest.cc 238 // Test the AddCount function.
245 histogram->AddCount(20, 15);
246 histogram->AddCount(30, 14);
253 histogram->AddCount(20, 25);
254 histogram->AddCount(30, 24);
histogram.h 188 void AddCount(Sample value, int count) override;
histogram.cc 281 AddCount(value, 1);
284 void Histogram::AddCount(int value, int count) {

Completed in 562 milliseconds