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

1234567891011

/libcore/luni/src/main/java/libcore/reflect/
H A DGenericArrayTypeImpl.java48 public int hashCode() { method in class:GenericArrayTypeImpl
49 return Objects.hashCode(getGenericComponentType());
H A DWildcardTypeImpl.java54 public int hashCode() { method in class:WildcardTypeImpl
55 return 31 * Arrays.hashCode(getLowerBounds()) +
56 Arrays.hashCode(getUpperBounds());
/libcore/ojluni/src/main/java/java/lang/annotation/
H A DAnnotation.java91 * of the member-name as computed by {@link String#hashCode()}) XOR
97 * <tt><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</tt>, where
105 * <tt><i>v</i>.hashCode()</tt>. (In the case of annotation
110 * {@link java.util.Arrays#hashCode(long[]) Arrays.hashCode}
117 int hashCode(); method in interface:Annotation
/libcore/ojluni/src/main/java/java/security/
H A DPrincipal.java65 public int hashCode(); method in interface:Principal
H A DCodeSigner.java106 public int hashCode() { method in class:CodeSigner
109 myhash = signerCertPath.hashCode();
111 myhash = signerCertPath.hashCode() + timestamp.hashCode();
H A DTimestamp.java108 public int hashCode() { method in class:Timestamp
110 myhash = timestamp.hashCode() + signerCertPath.hashCode();
/libcore/ojluni/src/main/java/java/security/spec/
H A DECFieldFp.java95 public int hashCode() { method in class:ECFieldFp
96 return p.hashCode();
H A DECFieldF2m.java234 public int hashCode() { method in class:ECFieldF2m
236 value += (rp==null? 0:rp.hashCode());
H A DECPoint.java110 public int hashCode() { method in class:ECPoint
112 return x.hashCode() << 5 + y.hashCode();
/libcore/ojluni/src/main/java/java/sql/
H A DRowId.java118 int hashCode(); method in interface:RowId
/libcore/ojluni/src/main/java/java/util/
H A DAbstractSet.java42 * for <tt>equals</tt> and <tt>hashCode</tt>.<p>
108 * <tt>s1.hashCode()==s2.hashCode()</tt> for any two sets <tt>s1</tt>
110 * {@link Object#hashCode}.
113 * <tt>hashCode</tt> method on each element in the set, and adding up
120 public int hashCode() { method in class:AbstractSet
126 h += obj.hashCode();
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixFileKey.java42 public int hashCode() { method in class:UnixFileKey
/libcore/luni/src/main/java/android/system/
H A DStructTimespec.java69 public int hashCode() { method in class:StructTimespec
H A DUnixSocketAddress.java109 public int hashCode() { method in class:UnixSocketAddress
110 return Arrays.hashCode(sun_path);
/libcore/luni/src/main/java/libcore/icu/
H A DCollationKeyICU.java65 public int hashCode() { method in class:CollationKeyICU
66 return key.hashCode();
/libcore/luni/src/test/java/libcore/java/security/
H A DPrincipalTest.java63 public int hashCode() { method in class:PrincipalTest.PrincipalWithEqualityByName
64 return name.hashCode();
/libcore/luni/src/test/java/libcore/java/util/
H A DLocales.java75 public int hashCode() { method in class:Locales
/libcore/ojluni/src/main/java/java/net/
H A DInterfaceAddress.java121 * @see java.net.InterfaceAddress#hashCode()
142 public int hashCode() { method in class:InterfaceAddress
143 return address.hashCode() + ((broadcast != null) ? broadcast.hashCode() : 0) + maskLength;
H A DProxy.java166 public final int hashCode() { method in class:Proxy
168 return type().hashCode();
169 return type().hashCode() + address().hashCode();
/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CRLEntry.java106 public int hashCode() { method in class:X509CRLEntry
/libcore/ojluni/src/main/java/java/text/
H A DParsePosition.java137 public int hashCode() { method in class:ParsePosition
H A DRuleBasedCollator.java408 public int hashCode() { method in class:RuleBasedCollator
410 return icuColl.hashCode();
/libcore/ojluni/src/main/java/javax/crypto/spec/
H A DRC2ParameterSpec.java151 public int hashCode() { method in class:RC2ParameterSpec
H A DRC5ParameterSpec.java193 public int hashCode() { method in class:RC5ParameterSpec
H A DSecretKeySpec.java191 public int hashCode() { method in class:SecretKeySpec
197 return (retval ^= "desede".hashCode());
200 this.algorithm.toLowerCase(Locale.ENGLISH).hashCode());

Completed in 394 milliseconds

1234567891011