OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StatsHistogram
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/disk_cache/
stats_histogram.h
24
class
StatsHistogram
: public base::Histogram {
33
explicit
StatsHistogram
(const std::string& name, Sample minimum,
36
~
StatsHistogram
();
38
static
StatsHistogram
* StatsHistogramFactoryGet(const std::string& name);
52
DISALLOW_COPY_AND_ASSIGN(
StatsHistogram
);
stats_histogram.cc
16
const Stats*
StatsHistogram
::stats_ = NULL;
18
StatsHistogram
::~
StatsHistogram
() {
24
StatsHistogram
*
StatsHistogram
::StatsHistogramFactoryGet(
36
StatsHistogram
* stats_histogram =
37
new
StatsHistogram
(name, minimum, maximum, bucket_count);
48
StatsHistogram
* return_histogram = static_cast<
StatsHistogram
*>(histogram);
50
CHECK_EQ(return_histogram->
StatsHistogram
::CalculateRangeChecksum()
[
all
...]
Completed in 400 milliseconds