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.java54 private final long[] mLongValues; field in PropertyParcel
90 mLongValues = longValues; in PropertyParcel()
114 return mLongValues; in getLongValues()
157 if (mLongValues != null) { in getValues()
158 return mLongValues; in getValues()
188 if (mLongValues != null) { in checkOnlyOneArrayCanBeSet()
218 } else if (mLongValues != null) { in hashCode()
219 hashCode = Arrays.hashCode(mLongValues); in hashCode()
249 && Arrays.equals(mLongValues, otherPropertyParcel.mLongValues) in equals()
266 private long[] mLongValues; field in PropertyParcel.Builder
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/
DMockRandom.java48 private long[] mLongValues; field in MockRandom
52 this.mLongValues = longValues; in MockRandom()
114 if (mLongValues == null) { in nextLong()
117 long next = mLongValues[mNextLongIndex]; in nextLong()
118 mNextLongIndex = (mNextLongIndex + 1) % mLongValues.length; in nextLong()