Searched defs:hashCode (Results 1 - 25 of 257) 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;
H A DAccount.java25 * {@link Parcelable} and also overrides {@link #equals} and {@link #hashCode}, making it
39 public int hashCode() { method in class:Account
41 result = 31 * result + name.hashCode();
42 result = 31 * result + type.hashCode();
/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
/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/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);
H A DBlackLevelPattern.java123 public int hashCode() { method in class:BlackLevelPattern
124 return Arrays.hashCode(mCfaOffsets);
/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>
86 public static <T> int hashCode(T[] array) { method in class:HashCodeHelpers
93 int x = (o == null) ? 0 : o.hashCode();
100 public static <T> int hashCode(T a) { method in class:HashCodeHelpers
101 return (a == null) ? 0 : a.hashCode();
104 public static <T> int hashCode(T a, T b) { method in class:HashCodeHelpers
113 public static <T> int hashCode(T a, T b, T c) { method in class:HashCodeHelpers
122 public static <T> int hashCode(T a, T b, T c, T d) { method in class:HashCodeHelpers
131 public static int hashCode(int x) { method in class:HashCodeHelpers
135 public static int hashCode(int x, int y) { method in class:HashCodeHelpers
139 public static int hashCode(int x, int y, int z) { method in class:HashCodeHelpers
143 public static int hashCode(int x, int y, int z, int w) { method in class:HashCodeHelpers
147 public static int hashCode(int x, int y, int z, int w, int t) { method in class:HashCodeHelpers
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkKey.java102 public int hashCode() { method in class:NetworkKey
H A DScoredNetwork.java98 public int hashCode() { method in class:ScoredNetwork
H A DIpPrefix.java133 public int hashCode() { method in class:IpPrefix
134 return Arrays.hashCode(address) + 11 * prefixLength;
/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.java52 public int hashCode() { method in class:PrintJobId
55 result = prime * result + ((mValue != null) ? mValue.hashCode() : 0);
/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/graphics/java/android/graphics/
H A DInsets.java97 public int hashCode() { method in class:Insets
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java76 public int hashCode() { method in class:ClassPathPackageInfo
77 return packageName.hashCode();
/frameworks/support/v4/java/android/support/v4/util/
H A DPair.java66 public int hashCode() { method in class:Pair
67 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
/frameworks/base/core/java/android/content/res/
H A DResourcesKey.java42 hash = 31 * hash + (mResDir == null ? 0 : mResDir.hashCode());
45 ? mOverrideConfiguration.hashCode() : 0);
55 public int hashCode() { method in class:ResourcesKey
/frameworks/base/core/java/android/hardware/camera2/marshal/
H A DMarshalRegistry.java104 this.hash = typeReference.hashCode() ^ nativeType;
123 public int hashCode() { method in class:MarshalRegistry.MarshalToken

Completed in 468 milliseconds

1234567891011