Home
last modified time | relevance | path

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

/packages/modules/AppSearch/testing/coretests/src/android/app/appsearch/external/util/
DBundleUtilTest.java42 assertThat(BundleUtil.deepEquals(one, one)).isTrue(); in testDeepEquals_self()
54 assertThat(BundleUtil.deepEquals(one, two)).isTrue(); in testDeepEquals_simple()
65 assertThat(BundleUtil.deepEquals(one, two)).isFalse(); in testDeepEquals_keyMismatch()
75 assertThat(BundleUtil.deepEquals(inputs[0], inputs[1])).isTrue(); in testDeepEquals_thorough_equal()
89 assertThat(BundleUtil.deepEquals(inputs[0], inputs[1])).isFalse(); in testDeepEquals_thorough_notEqual()
114 assertThat(BundleUtil.deepEquals(b1, b1Clone)).isTrue(); in testDeepEquals_nestedNotEquals()
115 assertThat(BundleUtil.deepEquals(b1, b2)).isFalse(); in testDeepEquals_nestedNotEquals()
116 assertThat(BundleUtil.deepEquals(b1Clone, b2)).isFalse(); in testDeepEquals_nestedNotEquals()
145 assertThat(BundleUtil.deepEquals(b1, b1Clone)).isTrue(); in testDeepEquals_sparseArray()
146 assertThat(BundleUtil.deepEquals(b1, b2)).isFalse(); in testDeepEquals_sparseArray()
[all …]
/packages/modules/Bluetooth/framework/java/android/bluetooth/le/
DScanFilter.java669 && Objects.deepEquals(mManufacturerData, other.mManufacturerData) in equals()
670 && Objects.deepEquals(mManufacturerDataMask, other.mManufacturerDataMask) in equals()
672 && Objects.deepEquals(mServiceData, other.mServiceData) in equals()
673 && Objects.deepEquals(mServiceDataMask, other.mServiceDataMask) in equals()
679 && Objects.deepEquals(mAdvertisingData, other.mAdvertisingData) in equals()
680 && Objects.deepEquals(mAdvertisingDataMask, other.mAdvertisingDataMask) in equals()
DBluetoothLeUtils.java133 if (!Objects.deepEquals(map.get(key), otherMap.get(key))) { in equals()
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/safeparcel/
DPropertyParcel.java252 && Arrays.deepEquals(mBytesValues, otherPropertyParcel.mBytesValues) in equals()
254 && Arrays.deepEquals(mEmbeddingValues, otherPropertyParcel.mEmbeddingValues); in equals()
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/util/
DBundleUtil.java43 public static boolean deepEquals(@Nullable Bundle one, @Nullable Bundle two) { in deepEquals() method in BundleUtil
82 return deepEquals((Bundle) one, (Bundle) two); in bundleValueEquals()
/packages/apps/Contacts/src/com/android/contacts/model/account/
DAccountTypeProvider.java147 if (!deepEquals(mAuthTypes.get(auth.type), auth)) { in shouldUpdate()
267 private boolean deepEquals(AuthenticatorDescription auth1, AuthenticatorDescription auth2) { in deepEquals() method in AccountTypeProvider
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/enterprise/
DCrossProfileCalendarHelperTest.java80 assertTrue(Objects.deepEquals(CrossProfileCalendarHelper.CALENDARS_TABLE_ALLOWED_LIST, in testNoProjection_getFullAllowedListProjectionForCalendars()
/packages/services/Car/car-lib/src/com/android/car/internal/property/
DContCarPropertyEventTracker.java143 && Objects.deepEquals(value, mCurrentCarPropertyValue.getValue())) { in hasUpdate()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyValue.java325 && Objects.deepEquals(mValue, carPropertyValue.mValue); in equals()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationDiff.java223 || !Objects.deepEquals(oldNotification.actions, newNotification.actions)) { in sameNotificationContent()
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/csml/
DCsmlUtil.java66 && Objects.deepEquals(tlvDatum.value, new byte[]{(byte) 0x00})) { in isSessionDataNotAvailable()
/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DDnsPacket.java593 && Arrays.deepEquals(mRecords, other.mRecords); in equals()
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DStruct.java703 if (!Objects.deepEquals(value, otherValue)) return false; in equals()