Searched refs:hashCode (Results 201 - 225 of 334) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DJobStatus.java223 return String.valueOf(hashCode()).substring(0, 3) + ".."
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java558 private final int hashCode; field in class:NetworkStatsCollection.Key
565 hashCode = Objects.hash(ident, uid, set, tag);
569 public int hashCode() { method in class:NetworkStatsCollection.Key
570 return hashCode;
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java139 public int hashCode() { method in class:CellIdentityCdma
H A DCellIdentityLte.java119 public int hashCode() { method in class:CellIdentityLte
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNode.java114 public int hashCode() { method in class:PropertyNode
116 // library which utilize hashCode() does not honor that, so intentionally throw an
119 "PropertyNode does not provide hashCode() implementation intentionally.");
/frameworks/base/core/java/android/content/
H A DContentValues.java85 public int hashCode() { method in class:ContentValues
86 return mValues.hashCode();
/frameworks/base/core/java/android/net/
H A DNetworkCapabilities.java531 public int hashCode() { method in class:NetworkCapabilities
538 (TextUtils.isEmpty(mNetworkSpecifier) ? 0 : mNetworkSpecifier.hashCode() * 17));
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewBase.java224 Integer.toHexString(hashCode()), SystemClock.uptimeMillis()));
237 if (DEBUG) Log.d(TAG, "screen on, instance " + Integer.toHexString(hashCode()));
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java380 logArray[3] = target.account.name.hashCode();
383 logArray[3] = target.service.hashCode();
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java368 return obj.hashCode();
373 public int hashCode() { method in class:ProcessErrorsTest.ProcessError
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java824 public int hashCode() { method in class:ActivityChooserModel.HistoricalRecord
827 result = prime * result + ((activity == null) ? 0 : activity.hashCode());
898 public int hashCode() { method in class:ActivityChooserModel.ActivityResolveInfo
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java384 public int hashCode() { method in class:PageContentRepository.RenderSpec
387 result = 31 * result + (printAttributes != null ? printAttributes.hashCode() : 0);
671 AsyncRenderer.this.hashCode()), null));
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java818 public int hashCode() { method in class:TouchUtils.ViewStateSnapshot
819 int result = mFirst != null ? mFirst.hashCode() : 0;
820 result = 31 * result + (mLast != null ? mLast.hashCode() : 0);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java804 public int hashCode() { method in class:ActivityChooserModel.HistoricalRecord
807 result = prime * result + ((activity == null) ? 0 : activity.hashCode());
878 public int hashCode() { method in class:ActivityChooserModel.ActivityResolveInfo
/frameworks/base/core/java/android/os/
H A DStrictMode.java1294 Integer crashFingerprint = info.hashCode();
1623 final Integer fingerprint = info.hashCode();
2156 public int hashCode() { method in class:StrictMode.ViolationInfo
2158 result = 37 * result + crashInfo.stackTrace.hashCode();
2163 result = 37 * result + broadcastIntentAction.hashCode();
2167 result = 37 * result + tag.hashCode();
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java513 if (subtypeHashCode == ims.hashCode()) {
884 if (String.valueOf(ims.hashCode()).equals(s)) {
1137 if (String.valueOf(st.hashCode()).equals(subtypeHashCode)) {
1148 final int hashCode = Integer.valueOf(subtypeHashCode);
1150 if (isValidSubtypeId(imi, hashCode)) {
1275 subtypeId = String.valueOf(currentSubtype.hashCode());
/frameworks/base/core/java/android/app/
H A DPendingIntent.java924 public int hashCode() { method in class:PendingIntent
925 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java634 public int hashCode() { method in class:BluetoothDevice
635 return mAddress.hashCode();
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureResult.java113 public final int hashCode() { method in class:CaptureResult.Key
114 return mKey.hashCode();
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationMap.java817 public int hashCode() { method in class:StreamConfigurationMap
819 return HashCodeHelpers.hashCode(
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java206 .InputMethod_Subtype_subtypeId, 0 /* use Arrays.hashCode */))
465 public int hashCode() { method in class:InputMethodInfo
466 return mId.hashCode();
/frameworks/base/core/tests/inputmethodtests/src/android/os/
H A DInputMethodTest.java214 assertEquals(expectedSubtype.hashCode(), actualSubtype.hashCode());
H A DSparseRectFArrayTest.java251 assertEquals(a.hashCode(), b.hashCode());
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java320 public int hashCode() { method in class:QSTile.Icon
321 return Icon.class.hashCode();
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java501 public int hashCode() { method in class:LockSettingsStorage.Cache.CacheKey
502 return key.hashCode() ^ userId ^ type;

Completed in 766 milliseconds

1234567891011>>