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

1234567891011

/dalvik/libcore/security/src/main/java/java/security/
H A DPrincipal.java49 * required by the general contract of {@link Object#hashCode}.
55 public int hashCode(); method in interface:Principal
H A DAllPermission.java72 * @see #hashCode
82 * required by the general contract of {@link Object#hashCode}.
89 public int hashCode() { method in class:AllPermission
H A DCodeSigner.java108 * required by the general contract of {@link Object#hashCode}.
115 public int hashCode() { method in class:CodeSigner
117 hash = signerCertPath.hashCode()
118 ^ (timestamp == null ? 0 : timestamp.hashCode());
H A DPermission.java54 * required by the general contract of {@link Object#hashCode}.
61 public abstract int hashCode(); method in class:Permission
H A DTimestamp.java77 * @see #hashCode
113 * required by the general contract of {@link Object#hashCode}.
120 public int hashCode() { method in class:Timestamp
122 hash = timestamp.hashCode() ^ signerCertPath.hashCode();
/dalvik/libcore/annotation/src/main/java/java/lang/annotation/
H A DAnnotation.java91 * (0x7f * n.hashCode()) ^ v.hashCode())}, where {@code n} is the
97 * Integer.valueOf(v).hashCode()} is used for an {@code int} value
102 * using the corresponding {@code hashCode(v)} helper function in
107 * calling their {@code hashCode} method.
113 int hashCode(); method in interface:Annotation
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractSet.java46 * @see #hashCode
76 public int hashCode() { method in class:AbstractSet
81 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.java94 public int hashCode() { method in class:ECFieldFp
95 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.java153 public int hashCode() { method in class:RC2ParameterSpec
H A DRC5ParameterSpec.java205 public int hashCode() { method in class:RC5ParameterSpec
H A DSecretKeySpec.java154 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.java125 * @see #hashCode
146 public final int hashCode() { method in class:Proxy
148 ret += type.hashCode();
150 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.java68 public int hashCode() { method in class:X509CRLEntry

Completed in 457 milliseconds

1234567891011