Home
last modified time | relevance | path

Searched defs:bucketBoundaries (Results 1 – 9 of 9) sorted by relevance

/external/opencensus-java/api/src/test/java/io/opencensus/stats/
DBucketBoundariesTest.java41 BucketBoundaries bucketBoundaries = BucketBoundaries.create(buckets); in testConstructBoundaries() local
49 BucketBoundaries bucketBoundaries = BucketBoundaries.create(buckets); in testConstructBoundaries_IgnoreNegativeBounds() local
56 BucketBoundaries bucketBoundaries = BucketBoundaries.create(buckets); in testConstructBoundaries_IgnoreZeroAndNegativeBounds() local
66 BucketBoundaries bucketBoundaries = BucketBoundaries.create(original); in testBoundariesDoesNotChangeWithOriginalList() local
90 BucketBoundaries bucketBoundaries = BucketBoundaries.create(buckets); in testNoBoundaries() local
DAggregationTest.java45 BucketBoundaries bucketBoundaries = BucketBoundaries.create(Arrays.asList(0.1, 2.2, 33.3)); in testCreateDistribution() local
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
DDistribution.java157 public static BucketOptions explicitOptions(List<Double> bucketBoundaries) { in explicitOptions()
198 private static ExplicitOptions create(List<Double> bucketBoundaries) { in create()
206 private static void checkBucketBoundsAreSorted(List<Double> bucketBoundaries) { in checkBucketBoundsAreSorted()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DBucketBoundaries.java48 public static final BucketBoundaries create(List<Double> bucketBoundaries) { in create()
DAggregation.java182 public static Distribution create(BucketBoundaries bucketBoundaries) { in create()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableAggregation.java262 private final BucketBoundaries bucketBoundaries; field in MutableAggregation.MutableDistribution
270 private MutableDistribution(BucketBoundaries bucketBoundaries) { in MutableDistribution()
285 static MutableDistribution create(BucketBoundaries bucketBoundaries) { in create()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DRecordUtilsTest.java169 BucketBoundaries bucketBoundaries = BucketBoundaries.create(Arrays.asList(-1.0, 0.0, 1.0)); in createMutableAggregation() local
DMutableAggregationTest.java85 BucketBoundaries bucketBoundaries = BucketBoundaries.create(Arrays.asList(0.1, 2.2, 33.3)); in testCreateEmpty() local
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/
DStatszZPageHandler.java535 List<Double> bucketBoundaries, in emitHistogramBuckets()