Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/util/
DPackageUserKey.java83 PackageUserKey otherKey = (PackageUserKey) obj; in equals()
84 return Objects.equals(mPackageName, otherKey.mPackageName) in equals()
85 && mWidgetCategory == otherKey.mWidgetCategory in equals()
86 && Objects.equals(mUser, otherKey.mUser); in equals()
/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsRecord.java326 Key otherKey = (Key) other; in equals() local
328 return (recordType == otherKey.recordType) && Arrays.equals(recordName, in equals()
329 otherKey.recordName); in equals()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/
DResourceAsset.java153 PackageResourceKey otherKey = (PackageResourceKey) object; in equals() local
154 return getCacheKey().equals(otherKey.getCacheKey()); in equals()
DCurrentWallpaperAsset.java187 CurrentWallpaperKey otherKey = (CurrentWallpaperKey) object; in equals() local
188 return getCacheKey().equals(otherKey.getCacheKey()); in equals()
DLiveWallpaperThumbAsset.java337 LiveWallpaperThumbKey otherKey = (LiveWallpaperThumbKey) object; in equals() local
338 return getCacheKey().equals(otherKey.getCacheKey()); in equals()
/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java398 int otherKey = otherEvent.mIntValues.keyAt(i); in equals() local
399 if (key != otherKey) { in equals()
410 int otherKey = otherEvent.mFloatValues.keyAt(i); in equals() local
411 if (key != otherKey) { in equals()
/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DMulticastRoutingCoordinatorService.java408 MfcKey otherKey = (MfcKey) other; in equals() local
409 return mIifVirtualIdx == otherKey.mIifVirtualIdx in equals()
410 && mSrcAddr.equals(otherKey.mSrcAddr) in equals()
411 && mDstAddr.equals(otherKey.mDstAddr); in equals()