Home
last modified time | relevance | path

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

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/safeparcel/
DPropertyParcel.java244 PropertyParcel otherPropertyParcel = (PropertyParcel) other; in equals() local
245 if (!mPropertyName.equals(otherPropertyParcel.mPropertyName)) { in equals()
248 return Arrays.equals(mStringValues, otherPropertyParcel.mStringValues) in equals()
249 && Arrays.equals(mLongValues, otherPropertyParcel.mLongValues) in equals()
250 && Arrays.equals(mDoubleValues, otherPropertyParcel.mDoubleValues) in equals()
251 && Arrays.equals(mBooleanValues, otherPropertyParcel.mBooleanValues) in equals()
252 && Arrays.deepEquals(mBytesValues, otherPropertyParcel.mBytesValues) in equals()
253 && Arrays.equals(mDocumentValues, otherPropertyParcel.mDocumentValues) in equals()
254 && Arrays.deepEquals(mEmbeddingValues, otherPropertyParcel.mEmbeddingValues); in equals()