Searched defs:hashCode (Results 101 - 125 of 252) sorted by relevance

1234567891011

/dalvik/libcore/luni/src/main/java/java/lang/
H A DBoolean.java134 public int hashCode() { method in class:Boolean
H A DByte.java159 public int hashCode() { method in class:Byte
H A DShort.java159 public int hashCode() { method in class:Short
/dalvik/libcore/luni/src/main/java/java/net/
H A DInetSocketAddress.java238 public final int hashCode() { method in class:InetSocketAddress
240 return hostname.hashCode() + port;
242 return addr.hashCode() + port;
H A DNetworkInterface.java54 private int hashCode; field in class:NetworkInterface
356 * @see #hashCode()
426 public int hashCode() { method in class:NetworkInterface
427 if (hashCode == 0) {
428 hashCode = name.hashCode();
430 return hashCode;
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractMap.java122 * @see #hashCode()
195 public int hashCode() { method in class:AbstractMap
199 result += it.next().hashCode();
H A DMap.java46 * @see #hashCode()
71 public int hashCode(); method in interface:Map.Entry
131 * @see #hashCode()
153 public int hashCode(); method in interface:Map
H A DUUID.java421 public int hashCode() { method in class:UUID
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpConfiguration.java134 public int hashCode() { method in class:HttpConfiguration
135 return uri.hashCode();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DImplForVariable.java47 public int hashCode() { method in class:ImplForVariable
48 return 31 * getName().hashCode() + getGenericDeclaration().hashCode();
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DStackTraceElement.java100 * @see #hashCode
189 public int hashCode() { method in class:StackTraceElement
199 return methodName.hashCode() ^ declaringClass.hashCode();
/dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/lang/annotation/
H A DAnnotationFactory.java253 * @see android.lang.annotation.AnnotationMember#hashCode()
255 public int hashCode() { method in class:AnnotationFactory
258 hash += element.hashCode();
296 } else if ("hashCode".equals(name)) {
297 return hashCode();
/dalvik/libcore/math/src/main/java/java/math/
H A DMathContext.java280 public int hashCode() { method in class:MathContext
/dalvik/libcore/security/src/main/java/java/security/
H A DCodeSource.java311 * {@link Object#hashCode}.
318 public int hashCode() { method in class:CodeSource
320 // hashCode() is undocumented there. Should we also use certs[i] to
323 return location == null ? 0 : location.hashCode();
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCertificate.java75 * @see #hashCode
102 public int hashCode() { method in class:Certificate
H A DX509CRL.java85 public int hashCode() { method in class:X509CRL
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/utils/
H A DObjectIdentifier.java174 * @see java.lang.Object#hashCode()
176 public int hashCode() { method in class:ObjectIdentifier
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java221 public int hashCode() method in class:DERBitString
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSAPrivateKey.java98 public int hashCode() method in class:JCERSAPrivateKey
100 return getModulus().hashCode() ^ getPrivateExponent().hashCode();
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DAccessController2Test.java284 public int hashCode() { method in class:AccessController2Test.RealPermission
H A DPermissionCollectionTest.java129 public int hashCode() { method in class:RealPermission
H A DPermissionTest.java59 public int hashCode() { method in class:PermissionTest.RealPermission
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
H A DGroupImpl.java76 public int hashCode() { method in class:GroupImpl
77 return group.hashCode();
/dalvik/libcore/text/src/main/java/java/text/
H A DAttributedCharacterIterator.java112 public final int hashCode() { method in class:AttributedCharacterIterator.Attribute
113 return super.hashCode();
H A DFieldPosition.java87 * @see #hashCode
136 public int hashCode() { method in class:FieldPosition
137 int attributeHash = (myAttribute == null) ? 0 : myAttribute.hashCode();

Completed in 1248 milliseconds

1234567891011