Searched refs:hashCode (Results 151 - 175 of 334) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerInternal.java248 public int hashCode() { method in class:DisplayManagerInternal.DisplayPowerRequest
/frameworks/base/core/java/android/net/
H A DRssiCurve.java186 public int hashCode() { method in class:RssiCurve
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java296 public int hashCode() { method in class:DisplayMetrics
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java272 public int hashCode() { method in class:ViewTreeObserver.InternalInsetsInfo
273 int result = contentInsets.hashCode();
274 result = 31 * result + visibleInsets.hashCode();
275 result = 31 * result + touchableRegion.hashCode();
/frameworks/base/graphics/java/android/graphics/
H A DPointF.java90 public int hashCode() { method in class:PointF
/frameworks/base/location/java/android/location/
H A DGeofence.java147 public int hashCode() { method in class:Geofence
/frameworks/base/media/java/android/media/
H A DAudioFocusInfo.java122 public int hashCode() { method in class:AudioFocusInfo
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioMix.java109 public int hashCode() { method in class:AudioMix
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityGsm.java115 public int hashCode() { method in class:CellIdentityGsm
H A DCellIdentityWcdma.java120 public int hashCode() { method in class:CellIdentityWcdma
H A DCellInfo.java111 public int hashCode() { method in class:CellInfo
H A DCellSignalStrengthGsm.java158 public int hashCode() { method in class:CellSignalStrengthGsm
H A DCellSignalStrengthWcdma.java158 public int hashCode() { method in class:CellSignalStrengthWcdma
H A DPreciseCallState.java269 public int hashCode() { method in class:PreciseCallState
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaCellLocation.java159 public int hashCode() { method in class:CdmaCellLocation
/frameworks/support/v4/java/android/support/v4/util/
H A DSimpleArrayMap.java283 return key == null ? indexOfNull() : indexOf(key, key.hashCode());
380 hash = key.hashCode();
568 public int hashCode() { method in class:SimpleArrayMap
574 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
/frameworks/base/core/java/android/content/
H A DIntentSender.java296 public int hashCode() { method in class:IntentSender
297 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/content/pm/
H A DSignature.java216 public int hashCode() { method in class:Signature
220 mHashCode = Arrays.hashCode(mSignature);
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java298 public int hashCode() { method in class:DnsSdTxtRecord
299 return Arrays.hashCode(mData);
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java251 public int hashCode() { method in class:StorageVolume
252 return mPath.hashCode();
/frameworks/base/core/java/android/printservice/
H A DPrintServiceInfo.java236 public int hashCode() { method in class:PrintServiceInfo
237 return 31 + ((mId == null) ? 0 : mId.hashCode());
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DRangeTest.java173 left.hashCode(), right.hashCode());
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java91 public int hashCode() { method in class:UploadedTexture.BorderKey
92 int x = config.hashCode() ^ length;
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java460 if (hashCode() < o.hashCode()) return -1;
461 if (hashCode() > o.hashCode()) return 1;
482 if (hashCode() < o.hashCode()) return -1;
483 if (hashCode() > o.hashCode()) return 1;
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DBatteryController.java246 pw.print(String.valueOf(it.next().hashCode()));
249 pw.print("," + String.valueOf(it.next().hashCode()));

Completed in 1601 milliseconds

1234567891011>>