Searched refs:mDoubleValues (Results 1 – 2 of 2) sorted by relevance
58 private final double[] mDoubleValues; field in PropertyParcel91 mDoubleValues = doubleValues; in PropertyParcel()120 return mDoubleValues; in getDoubleValues()160 if (mDoubleValues != null) { in getValues()161 return mDoubleValues; in getValues()191 if (mDoubleValues != null) { in checkOnlyOneArrayCanBeSet()220 } else if (mDoubleValues != null) { in hashCode()221 hashCode = Arrays.hashCode(mDoubleValues); in hashCode()250 && Arrays.equals(mDoubleValues, otherPropertyParcel.mDoubleValues) in equals()267 private double[] mDoubleValues; field in PropertyParcel.Builder[all …]
49 private double[] mDoubleValues; field in MockRandom53 this.mDoubleValues = doubleValues; in MockRandom()83 if (mDoubleValues == null) { in nextDouble()86 double next = mDoubleValues[mNextDoubleIndex]; in nextDouble()87 mNextDoubleIndex = (mNextDoubleIndex + 1) % mDoubleValues.length; in nextDouble()