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

12345678910

/dalvik/libcore/security/src/main/java/java/security/
H A DPrincipal.java58 * required by the general contract of {@link Object#hashCode}.
65 public int hashCode(); method in interface:Principal
H A DAllPermission.java75 * @see #hashCode
84 * required by the general contract of {@link Object#hashCode}.
91 public int hashCode() { method in class:AllPermission
H A DCodeSigner.java118 * required by the general contract of {@link Object#hashCode}.
125 public int hashCode() { method in class:CodeSigner
127 hash = signerCertPath.hashCode()
128 ^ (timestamp == null ? 0 : timestamp.hashCode());
H A DPermission.java62 * required by the general contract of {@link Object#hashCode}.
69 public abstract int hashCode(); method in class:Permission
H A DTimestamp.java85 * @see #hashCode
126 * required by the general contract of {@link Object#hashCode}.
133 public int hashCode() { method in class:Timestamp
135 hash = timestamp.hashCode() ^ signerCertPath.hashCode();
/dalvik/libcore/annotation/src/main/java/java/lang/annotation/
H A DAnnotation.java95 * (0x7f * n.hashCode()) ^ v.hashCode())}, where {@code n} is the
101 * Integer.valueOf(v).hashCode()} is used for an {@code int} value
106 * using the corresponding {@code hashCode(v)} helper function in
111 * calling their {@code hashCode} method.
119 int hashCode(); method in interface:Annotation
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractSet.java48 * @see #hashCode
80 public int hashCode() { method in class:AbstractSet
85 result += next == null ? 0 : next.hashCode();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/misc/
H A DHashCode.java24 * <code>java.util.List.hashCode</code>.
46 * public int hashCode() {
47 * int hashCode = HashCode.EMPTY_HASH_CODE;
48 * hashCode = HashCode.combine(hashCode, id);
49 * hashCode = HashCode.combine(hashCode, name);
50 * hashCode = HashCode.combine(hashCode, weight);
51 * return hashCode;
71 private int hashCode = EMPTY_HASH_CODE; field in class:HashCode
76 public final int hashCode() { method in class:HashCode
86 combine(int hashCode, boolean value) argument
97 combine(int hashCode, long value) argument
108 combine(int hashCode, float value) argument
119 combine(int hashCode, double value) argument
130 combine(int hashCode, Object value) argument
140 combine(int hashCode, int value) argument
[all...]
/dalvik/libcore/security/src/main/java/java/security/spec/
H A DECFieldFp.java101 public int hashCode() { method in class:ECFieldFp
102 return p.hashCode();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DASN1Null.java17 public int hashCode() method in class:ASN1Null
H A DDERObject.java14 public abstract int hashCode(); method in class:DERObject
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java47 public int hashCode() method in class:DHValidationParameters
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java63 public int hashCode() { method in class:NameValuePair
64 return name.hashCode() * 31 + value.hashCode();
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstAnnotation.java55 public int hashCode() { method in class:CstAnnotation
56 return annotation.hashCode();
H A DCstLiteral32.java46 public final int hashCode() { method in class:CstLiteral32
H A DCstLiteral64.java46 public final int hashCode() { method in class:CstLiteral64
/dalvik/dx/tests/089-dex-define-object/
H A DObject.java33 public native int hashCode(); method in class:Object
/dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
H A DRC2ParameterSpec.java155 public int hashCode() { method in class:RC2ParameterSpec
H A DRC5ParameterSpec.java207 public int hashCode() { method in class:RC5ParameterSpec
H A DSecretKeySpec.java156 public int hashCode() { method in class:SecretKeySpec
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DCollationKey.java121 public int hashCode() method in class:CollationKey
/dalvik/libcore/luni/src/main/java/java/net/
H A DProxy.java133 * @see #hashCode
156 public final int hashCode() { method in class:Proxy
158 ret += type.hashCode();
160 ret += address.hashCode();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DImplForWildcard.java54 public int hashCode() { method in class:ImplForWildcard
55 return 31 * Arrays.hashCode(getLowerBounds()) +
56 Arrays.hashCode(getUpperBounds());
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DObject.java40 * {@link Class} of an object, getting its {@link #hashCode()}, or checking
103 * #hashCode()} methods is that if {@code equals} returns {@code true} for
104 * any two objects, then {@code hashCode()} must return the same value for
113 * @see #hashCode
179 public native int hashCode(); method in class:Object
244 * and a hexadecimal representation of the object's {@link #hashCode()},
248 * getClass().getName() + '@' + Integer.toHexString(hashCode())
255 return getClass().getName() + '@' + Integer.toHexString(hashCode());
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DX509CRLEntry.java73 public int hashCode() { method in class:X509CRLEntry

Completed in 1225 milliseconds

12345678910