Searched defs:hashCode (Results 1 - 25 of 369) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DAccountAndUser.java42 public int hashCode() { method in class:AccountAndUser
43 return account.hashCode() + userId;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DHashCodeHelpers.java27 * <p>Useful to implement a {@link Object#hashCode} for uniformly distributed data.</p>
33 public static int hashCode(int... array) { method in class:HashCodeHelpers
40 * and used elsewhere in the runtime (e.g. Arrays#hashCode)
57 * <p>Useful to implement a {@link Object#hashCode} for uniformly distributed data.</p>
63 public static int hashCode(float... array) { method in class:HashCodeHelpers
80 * <p>Useful to implement a {@link Object#hashCode} for uniformly distributed data.</p>
93 int x = (o == null) ? 0 : o.hashCode();
/frameworks/base/core/java/android/security/net/config/
H A DDomain.java41 public int hashCode() { method in class:Domain
42 return hostname.hashCode() ^ (subdomainsIncluded ? 1231 : 1237);
H A DPin.java31 mHashCode = Arrays.hashCode(digest) ^ digestAlgorithm.hashCode();
54 public int hashCode() { method in class:Pin
67 if (other.hashCode() != mHashCode) {
/frameworks/base/core/java/android/transition/
H A DTransitionValues.java74 public int hashCode() { method in class:TransitionValues
75 return 31*view.hashCode() + values.hashCode();
80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
/frameworks/base/media/java/android/media/
H A DAudioHandle.java46 public int hashCode() { method in class:AudioHandle
H A DDrmInitData.java83 public int hashCode() { method in class:DrmInitData.SchemeInitData
84 return mimeType.hashCode() + 31 * Arrays.hashCode(data);
/frameworks/base/opengl/java/android/opengl/
H A DEGLObjectHandle.java61 public int hashCode() { method in class:EGLObjectHandle
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java40 public int hashCode() { method in class:EGLDisplayImpl
H A DEGLContextImpl.java47 public int hashCode() { method in class:EGLContextImpl
H A DEGLSurfaceImpl.java45 public int hashCode() { method in class:EGLSurfaceImpl
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLObjectHandle.java61 public int hashCode() { method in class:EGLObjectHandle
/frameworks/support/transition/base/android/support/transition/
H A DTransitionValues.java67 public int hashCode() { method in class:TransitionValues
68 return 31 * view.hashCode() + values.hashCode();
73 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
/frameworks/base/core/java/android/content/pm/
H A DKeySet.java58 public int hashCode() { method in class:KeySet
59 return token.hashCode();
H A DPackageCleanItem.java51 public int hashCode() { method in class:PackageCleanItem
54 result = 31 * result + packageName.hashCode();
/frameworks/base/core/java/android/hardware/camera2/params/
H A DReprocessFormatsMap.java254 public int hashCode() { method in class:ReprocessFormatsMap
256 return HashCodeHelpers.hashCode(mEntry);
/frameworks/base/core/java/android/net/
H A DNetworkKey.java102 public int hashCode() { method in class:NetworkKey
H A DScoredNetwork.java129 public int hashCode() { method in class:ScoredNetwork
/frameworks/base/core/java/android/os/
H A DParcelUuid.java77 public int hashCode() { method in class:ParcelUuid
78 return mUuid.hashCode();
/frameworks/base/core/java/android/print/
H A DPrintJobId.java54 public int hashCode() { method in class:PrintJobId
57 result = prime * result + mValue.hashCode();
/frameworks/base/core/java/android/util/
H A DPair.java64 public int hashCode() { method in class:Pair
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
/frameworks/base/core/java/android/view/
H A DDisplayAdjustments.java73 public int hashCode() { method in class:DisplayAdjustments
75 hash = hash * 31 + Objects.hashCode(mCompatInfo);
76 hash = hash * 31 + Objects.hashCode(mConfiguration);
/frameworks/base/graphics/java/android/graphics/
H A DInsets.java97 public int hashCode() { method in class:Insets
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStorePublicKey.java47 public int hashCode() { method in class:AndroidKeyStorePublicKey
49 int result = super.hashCode();
50 result = prime * result + Arrays.hashCode(mEncoded);
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DI18Name.java70 public int hashCode() { method in class:I18Name
71 int result = mLanguage.hashCode();
72 result = 31 * result + mText.hashCode();

Completed in 1707 milliseconds

1234567891011>>