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

  /external/ImageMagick/coders/
histogram.h 27 MagickCoderExports(HISTOGRAM)
coders-list.h 74 AddMagickCoder(HISTOGRAM)
  /external/libchrome/base/metrics/
histogram_base.cc 16 #include "base/metrics/histogram.h"
33 case HISTOGRAM:
34 return "HISTOGRAM";
56 case HISTOGRAM:
57 return Histogram::DeserializeInfoImpl(iter);
204 // A set of histogram names that provides the "permanent" lifetime required
205 // by histogram objects for those strings that are not already code constants
histogram_base.h 34 // HistogramBase, add new histogram types and names below.
37 HISTOGRAM,
45 // Controls the verbosity of the information when the histogram is serialized to
49 // The histogram is completely serialized.
59 // visible to files that define the various histogram types.
73 // These count the individual histogram types. This must follow the order
90 // Create or find existing histogram that matches the pickled info.
107 // Histogram should be UMA uploaded.
110 // Indicates that this is a stability histogram. This flag exists to specify
115 // Indicates that the histogram was pickled to be sent across an IP
    [all...]
histogram.cc 5 // Histogram is an object that aggregates statistics, and can summarize them in
10 #include "base/metrics/histogram.h"
55 DLOG(ERROR) << "Pickle error decoding Histogram: " << *histogram_name;
60 // checks above and beyond those in Histogram::Initialize()
66 DLOG(ERROR) << "Values error decoding Histogram: " << histogram_name;
70 // We use the arguments to find or create the local version of the histogram
77 bool ValidateRangeChecksum(const HistogramBase& histogram,
79 // Normally, |histogram| should have type HISTOGRAM or be inherited from it.
82 if (histogram.GetHistogramType() == DUMMY_HISTOGRAM
160 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name_); local
653 HistogramBase* histogram = Histogram::FactoryGet( local
1010 HistogramBase* histogram = LinearHistogram::FactoryGet( local
1170 HistogramBase* histogram = BooleanHistogram::FactoryGet( local
1328 HistogramBase* histogram = CustomHistogram::FactoryGet( local
    [all...]
histogram_unittest.cc 5 #include "base/metrics/histogram.h"
52 // for histogram allocation. False will allocate histograms from the process
64 // Each test will have a clean state (no Histogram / BucketRanges
98 std::unique_ptr<SampleVector> SnapshotAllSamples(Histogram* h) {
119 HistogramBase* histogram = Histogram::FactoryGet( local
121 EXPECT_TRUE(histogram);
162 HistogramBase* histogram = LinearHistogram::FactoryGet( local
165 std::unique_ptr<HistogramSamples> samples = histogram->SnapshotSamples();
172 HistogramBase* histogram local
201 HistogramBase* histogram = local
238 Histogram* histogram = static_cast<Histogram*>( local
279 Histogram* histogram = static_cast<Histogram*>( local
317 Histogram* histogram = static_cast<Histogram*>( local
366 Histogram* histogram = static_cast<Histogram*>( local
378 Histogram* histogram = static_cast<Histogram*>( local
401 Histogram* histogram = static_cast<Histogram*>( local
429 Histogram* histogram = static_cast<Histogram*>(Histogram::FactoryGet( local
446 Histogram* histogram = static_cast<Histogram*>( local
493 Histogram* histogram = static_cast<Histogram*>( local
546 Histogram* histogram = static_cast<Histogram*>( local
581 Histogram* histogram = static_cast<Histogram*>( local
657 HistogramBase* histogram = Histogram::FactoryGet( local
    [all...]
persistent_histogram_allocator.cc 17 #include "base/metrics/histogram.h"
79 // Calculate the number of bytes required to store all of a histogram's
168 // The sample-record could be for any sparse histogram. Add the reference
233 // SHA1(Histogram): Increment this if structure changes!
251 // Space for the histogram name will be added during the actual allocation
281 // Unfortunately, the histogram "pickle" methods cannot be used as part of
324 // Create the metadata necessary for a persistent sparse histogram. This
329 // once histogram construction is complete.
402 // Create the histogram using resources in persistent memory. This ends up
406 // correct before commiting the new histogram to persistent space
407 std::unique_ptr<HistogramBase> histogram = CreateHistogram(histogram_data); local
504 std::unique_ptr<HistogramBase> histogram = local
581 std::unique_ptr<HistogramBase> histogram; local
1000 std::unique_ptr<HistogramBase> histogram = local
    [all...]
  /external/opencensus-java/exporters/stats/prometheus/src/test/java/io/opencensus/exporter/stats/prometheus/
PrometheusStatsCollectorTest.java 108 Type.HISTOGRAM,
154 "view1", Type.HISTOGRAM, "View description", Collections.<Sample>emptyList()));
PrometheusExportUtilsTest.java 135 assertThat(PrometheusExportUtils.getType(DISTRIBUTION, CUMULATIVE)).isEqualTo(Type.HISTOGRAM);
154 "view_3", Type.HISTOGRAM, DESCRIPTION, Collections.<Sample>emptyList()));
256 "Prometheus Histogram cannot have a label named 'le', "
295 Type.HISTOGRAM,
  /external/opencensus-java/exporters/stats/prometheus/src/main/java/io/opencensus/exporter/stats/prometheus/
PrometheusExportUtils.java 64 * Type#GAUGE} and {@link Distribution} will be {@link Type#HISTOGRAM}. Please note we cannot set
65 * bucket boundaries for custom {@link Type#HISTOGRAM}.
75 * histogram buckets.
96 Functions.returnConstant(Type.HISTOGRAM);
123 "Prometheus Histogram cannot have a label named 'le', "
195 // For histogram buckets, manually add the bucket boundaries as "le" labels. See
282 // Returns true if there is an "le" label name in histogram label names, returns false otherwise.
286 if (!Type.HISTOGRAM.equals(type)) {

Completed in 120 milliseconds