OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:linear_histogram
(Results
1 - 5
of
5
) sorted by null
/external/chromium/base/metrics/
histogram_unittest.cc
30
Histogram*
linear_histogram
(LinearHistogram::FactoryGet(
32
EXPECT_NE(reinterpret_cast<Histogram*>(NULL),
linear_histogram
);
local
36
EXPECT_NE(
linear_histogram
, linear_histogram1);
96
Histogram*
linear_histogram
(LinearHistogram::FactoryGet(
98
EXPECT_NE(reinterpret_cast<Histogram*>(NULL),
linear_histogram
);
local
176
Histogram*
linear_histogram
(LinearHistogram::FactoryGet(
180
EXPECT_EQ(i,
linear_histogram
->ranges(i));
181
EXPECT_EQ(INT_MAX,
linear_histogram
->ranges(8));
histogram.cc
276
} else if (histogram_type ==
LINEAR_HISTOGRAM
) {
795
DCHECK_EQ(
LINEAR_HISTOGRAM
, histogram->histogram_type());
810
return
LINEAR_HISTOGRAM
;
[
all
...]
histogram.h
281
LINEAR_HISTOGRAM
,
/external/chromium/chrome/browser/extensions/
extension_metrics_module.cc
79
if (type == Histogram::
LINEAR_HISTOGRAM
) {
117
Histogram::
LINEAR_HISTOGRAM
: Histogram::HISTOGRAM);
125
return RecordValue(name, Histogram::
LINEAR_HISTOGRAM
, 1, 101, 102, sample);
extension_metrics_apitest.cc
38
{"test.h.2", base::Histogram::
LINEAR_HISTOGRAM
, 1, 200, 50}, // custom
39
{"test.h.3", base::Histogram::
LINEAR_HISTOGRAM
, 1, 101, 102}, // percentage
Completed in 1559 milliseconds