Searched refs:mDoubleValues (Results 1 – 2 of 2) sorted by relevance
56 private final double @Nullable [] mDoubleValues; field in PropertyParcel89 mDoubleValues = doubleValues; in PropertyParcel()115 return mDoubleValues; in getDoubleValues()155 if (mDoubleValues != null) { in getValues()156 return mDoubleValues; in getValues()189 if (mDoubleValues != null) { in checkOnlyOneArrayCanBeSet()221 } else if (mDoubleValues != null) { in hashCode()222 hashCode = Arrays.hashCode(mDoubleValues); in hashCode()253 && Arrays.equals(mDoubleValues, otherPropertyParcel.mDoubleValues) in equals()271 private double[] mDoubleValues; field in PropertyParcel.Builder[all …]
44 private final double[] mDoubleValues; field in MockRandom48 this.mDoubleValues = doubleValues; in MockRandom()78 if (mDoubleValues == null) { in nextDouble()81 double next = mDoubleValues[mNextDoubleIndex]; in nextDouble()82 mNextDoubleIndex = (mNextDoubleIndex + 1) % mDoubleValues.length; in nextDouble()