Searched refs:bucketBoundariesCopy (Results 1 – 2 of 2) sorted by relevance
46 List<Double> bucketBoundariesCopy = new ArrayList<Double>(bucketBoundaries); // Deep copy. in create() local48 if (bucketBoundariesCopy.size() > 1) { in create()49 double lower = bucketBoundariesCopy.get(0); in create()50 for (int i = 1; i < bucketBoundariesCopy.size(); i++) { in create()51 double next = bucketBoundariesCopy.get(i); in create()56 return new AutoValue_BucketBoundaries(Collections.unmodifiableList(bucketBoundariesCopy)); in create()
203 List<Double> bucketBoundariesCopy = in create() local205 checkBucketBoundsAreSorted(bucketBoundariesCopy); in create()206 return new AutoValue_Distribution_BucketOptions_ExplicitOptions(bucketBoundariesCopy); in create()