Home
last modified time | relevance | path

Searched refs:mLongValues (Results 1 – 2 of 2) sorted by relevance

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/safeparcel/
DPropertyParcel.java53 private final long @Nullable [] mLongValues; field in PropertyParcel
88 mLongValues = longValues; in PropertyParcel()
110 return mLongValues; in getLongValues()
152 if (mLongValues != null) { in getValues()
153 return mLongValues; in getValues()
186 if (mLongValues != null) { in checkOnlyOneArrayCanBeSet()
219 } else if (mLongValues != null) { in hashCode()
220 hashCode = Arrays.hashCode(mLongValues); in hashCode()
252 && Arrays.equals(mLongValues, otherPropertyParcel.mLongValues) in equals()
270 private long[] mLongValues; field in PropertyParcel.Builder
[all …]
/packages/modules/AdServices/adservices/tests/test-util/java/com/android/adservices/
DMockRandom.java43 private final long[] mLongValues; field in MockRandom
47 this.mLongValues = longValues; in MockRandom()
109 if (mLongValues == null) { in nextLong()
112 long next = mLongValues[mNextLongIndex]; in nextLong()
113 mNextLongIndex = (mNextLongIndex + 1) % mLongValues.length; in nextLong()