Searched defs:hashCode (Results 26 - 50 of 141) sorted by relevance

123456

/libcore/luni/src/main/java/java/security/cert/
H A DCertPath.java92 * Overrides {@code Object.hashCode()}. The function is defined as follows:
94 * {@code hashCode = 31 * path.getType().hashCode() +
95 * path.getCertificates().hashCode();}
100 public int hashCode() { method in class:CertPath
101 int hash = getType().hashCode();
102 hash = hash*31 + getCertificates().hashCode();
H A DCertificate.java73 * @see #hashCode
100 public int hashCode() { method in class:Certificate
H A DX509CRL.java79 public int hashCode() { method in class:X509CRL
/libcore/luni/src/main/java/java/security/spec/
H A DECFieldF2m.java261 public int hashCode() { method in class:ECFieldF2m
262 return rp == null ? m : m + rp.hashCode();
/libcore/luni/src/main/java/java/util/
H A DCollection.java169 * @see #hashCode
181 public int hashCode(); method in interface:Collection
H A DMapEntry.java74 public int hashCode() { method in class:MapEntry
75 return (key == null ? 0 : key.hashCode())
76 ^ (value == null ? 0 : value.hashCode());
H A DSet.java100 * @see #hashCode
112 public int hashCode(); method in interface:Set
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
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DObjectIdentifier.java88 @Override public int hashCode() { method in class:ObjectIdentifier
89 // FIXME change me to Arrays.hashCode(int[])
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DAlgorithmIdentifier.java124 @Override public int hashCode() { method in class:AlgorithmIdentifier
125 return algorithm.hashCode() * 37 + (parameters != null ? Arrays.hashCode(parameters) : 0);
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLEngine.java110 public int hashCode() { method in class:OpenSSLEngine
H A DOpenSSLKey.java88 public int hashCode() { method in class:OpenSSLKey
H A DClientSessionContext.java133 @Override public int hashCode() { method in class:ClientSessionContext.HostAndPort
134 return host.hashCode() * 31 + port;
/libcore/luni/src/main/java/java/lang/
H A DBoolean.java145 public int hashCode() { method in class:Boolean
H A DStackTraceElement.java96 * @see #hashCode
180 public int hashCode() { method in class:StackTraceElement
190 return methodName.hashCode() ^ declaringClass.hashCode();
/libcore/luni/src/main/java/java/math/
H A DMathContext.java211 public int hashCode() { method in class:MathContext
/libcore/luni/src/main/java/java/net/
H A DInetSocketAddress.java229 public final int hashCode() { method in class:InetSocketAddress
231 return hostname.hashCode() + port;
233 return addr.hashCode() + port;
/libcore/luni/src/main/java/java/text/
H A DAttributedCharacterIterator.java111 public final int hashCode() { method in class:AttributedCharacterIterator.Attribute
112 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();
H A DRuleBasedBreakIterator.java105 @Override public int hashCode() { method in class:RuleBasedBreakIterator
106 return wrapped.hashCode();
H A DStringCharacterIterator.java134 * @see #hashCode
189 public int hashCode() { method in class:StringCharacterIterator
190 return string.hashCode() + start + end + offset;
/libcore/luni/src/main/java/javax/xml/namespace/
H A DQName.java45 * QName.equals(Object)} or to compute the {@link #hashCode()
46 * QName.hashCode()}. Equality and the hash code are defined using
334 * java.lang.Object#hashCode() Object.hashCode()}.</p>
338 public final int hashCode() { method in class:QName
339 return namespaceURI.hashCode() ^ localPart.hashCode();
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
H A DAnnotationFactory.java243 * @see android.lang.annotation.AnnotationMember#hashCode()
245 public int hashCode() { method in class:AnnotationFactory
248 hash += element.hashCode();
290 } else if ("hashCode".equals(name)) {
291 return hashCode();
/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DImplForVariable.java45 public int hashCode() { method in class:ImplForVariable
46 return 31 * getName().hashCode() + getGenericDeclaration().hashCode();
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
H A DObjectIdentifier.java172 * @see java.lang.Object#hashCode()
174 public int hashCode() { method in class:ObjectIdentifier

Completed in 2202 milliseconds

123456