Searched refs:doubleValues (Results 1 – 5 of 5) sorted by relevance
46 public MockRandom(long[] longValues, double[] doubleValues) { in MockRandom() argument48 this.mDoubleValues = doubleValues; in MockRandom()55 public MockRandom(double[] doubleValues) { in MockRandom() argument56 this(null, doubleValues); in MockRandom()
80 @Param(id = 4) double @Nullable [] doubleValues, in PropertyParcel()89 mDoubleValues = doubleValues; in PropertyParcel()298 public @NonNull Builder setDoubleValues(double @NonNull [] doubleValues) { in setDoubleValues() argument299 mDoubleValues = Objects.requireNonNull(doubleValues); in setDoubleValues()
52 double[] doubleValues = {1.0, 2.0}; in testPropertyParcel_onePropertySet_success() local74 .setDoubleValues(doubleValues) in testPropertyParcel_onePropertySet_success()77 .isEqualTo(Arrays.copyOf(doubleValues, doubleValues.length)); in testPropertyParcel_onePropertySet_success()
88 double[] doubleValues = (double[]) property; in toDocumentProto() local89 for (int j = 0; j < doubleValues.length; j++) { in toDocumentProto()90 propertyProto.addDoubleValues(doubleValues[j]); in toDocumentProto()
400 double[] doubleValues = propertyParcel.getDoubleValues(); in getRawPropertyFromRawDocument() local401 if (doubleValues != null && index < doubleValues.length) { in getRawPropertyFromRawDocument()402 extractedValue = Arrays.copyOfRange(doubleValues, index, index + 1); in getRawPropertyFromRawDocument()