OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SparseHistogram
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/metrics/
sparse_histogram.h
27
base::HistogramBase* histogram = base::
SparseHistogram
::FactoryGet( \
34
class BASE_EXPORT
SparseHistogram
: public HistogramBase {
40
~
SparseHistogram
() override;
61
// Clients should always use FactoryGet to create
SparseHistogram
.
62
explicit
SparseHistogram
(const std::string& name);
90
DISALLOW_COPY_AND_ASSIGN(
SparseHistogram
);
sparse_histogram.cc
22
HistogramBase*
SparseHistogram
::FactoryGet(const std::string& name,
28
HistogramBase* tentative_histogram = new
SparseHistogram
(name);
37
SparseHistogram
::~
SparseHistogram
() {}
39
uint64_t
SparseHistogram
::name_hash() const {
43
HistogramType
SparseHistogram
::GetHistogramType() const {
47
bool
SparseHistogram
::HasConstructionArguments(
51
//
SparseHistogram
never has min/max/bucket_count limit.
55
void
SparseHistogram
::Add(Sample value) {
59
void
SparseHistogram
::AddCount(Sample value, int count)
[
all
...]
Completed in 57 milliseconds