Searched refs:hashCode (Results 201 - 225 of 1062) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIServerSocketFactory.java287 * {@link #hashCode()}) if it adds instance state that affects
344 public int hashCode() { method in class:SslRMIServerSocketFactory
345 return getClass().hashCode() +
346 (context == null ? 0 : context.hashCode()) +
347 (needClientAuth ? Boolean.TRUE.hashCode() : Boolean.FALSE.hashCode()) +
348 (enabledCipherSuites == null ? 0 : enabledCipherSuitesList.hashCode()) +
349 (enabledProtocols == null ? 0 : enabledProtocolsList.hashCode());
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java296 public int hashCode() method in class:ActivationGroupDesc.CommandEnvironment
299 return (command == null ? 0 : command.hashCode());
354 public int hashCode() { method in class:ActivationGroupDesc
359 : location.hashCode() << 24) ^
362 : env.hashCode() << 16) ^
365 : className.hashCode() << 8) ^
368 : data.hashCode()));
/openjdk7/jdk/test/com/sun/jmx/snmp/
H A DSnmpOidHashCode.java26 * @summary Test that SnmpOid hashCode is consistent with equals.
144 if (o1.hashCode() != o2.hashCode()) {
146 "hashCode differ:" +
148 o1.hashCode()+", "+
150 o2.hashCode());
161 if (o1.hashCode() == o2.hashCode()) collisions++;
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedMapBash.java59 if (! (hm.hashCode() == m.hashCode() &&
60 hm.entrySet().hashCode() == m.entrySet().hashCode() &&
61 hm.keySet().hashCode() == m.keySet().hashCode()))
62 fail("Incorrect hashCode computation.");
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DHandler.java96 protected int hashCode(URL u) { method in class:Handler
101 h += protocol.hashCode();
107 return h + file.hashCode();
113 h += enclosedURL.hashCode();
115 h += fileWithoutEntry.hashCode();
119 h += entry.hashCode();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLEntityDescriptionImpl.java144 public int hashCode() { method in class:XMLEntityDescriptionImpl
145 int code = super.hashCode();
147 code += fEntityName.hashCode();
150 } // hashCode():int
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectKeyImpl.java62 public int hashCode() method in class:ObjectKeyImpl
64 return oktemp.hashCode() ^ id.hashCode() ;
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosKey.java244 * @return a hashCode() for the <code>KerberosKey</code>
247 public int hashCode() { method in class:KerberosKey
252 result = 37 * result + Arrays.hashCode(getEncoded());
255 result = 37 * result + principal.hashCode();
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DSecretKeySpec.java191 public int hashCode() { method in class:SecretKeySpec
197 return (retval ^= "desede".hashCode());
199 return (retval ^= this.algorithm.toLowerCase().hashCode());
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanConstructorInfoSupport.java222 * and signature, where the signature hashCode is calculated by a
224 * java.util.Arrays.asList(this.getSignature).hashCode()}).</p>
227 * t1.hashCode()==t2.hashCode()} for any two {@code
230 * {@link Object#hashCode() Object.hashCode()}.</p>
240 * on the first call to {@code hashCode}, and then the same value
246 public int hashCode() { method in class:OpenMBeanConstructorInfoSupport
249 // (ie 1st call to hashCode())
253 value += this.getName().hashCode();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DDigestClientId.java82 pHash = pHash * 31 + propvals[i].hashCode();
86 myHash = super.hashCode() + pHash;
100 public int hashCode() { method in class:DigestClientId
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassFile.java172 public int hashCode() { method in class:ClassFile.NameAndType
173 return name.hashCode() * type.hashCode();
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAccessDescription.java83 public int hashCode() { method in class:AccessDescription
85 myhash = accessMethod.hashCode() + accessLocation.hashCode();
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DEra.java137 public int hashCode() { method in class:Era
139 hash = name.hashCode() ^ abbr.hashCode() ^ (int)since ^ (int)(since >> 32)
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DTypeVariableImpl.java178 public int hashCode() { method in class:TypeVariableImpl
179 return genericDeclaration.hashCode() ^ name.hashCode();
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DCorbaContactInfoList.java49 public int hashCode(); method in interface:CorbaContactInfoList
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DStubDelegate.java57 * Delegation call for {@link Stub#hashCode}.
59 int hashCode(Stub self); method in interface:StubDelegate
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DRegister.java70 public int hashCode() { method in class:Register
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DTypeComponentImpl.java66 abstract public int hashCode(); method in class:TypeComponentImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DIndexableFieldIdentifier.java61 public int hashCode() { method in class:IndexableFieldIdentifier
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DIntegerSyntax.java122 public int hashCode() { method in class:IntegerSyntax
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSCredential.java366 * @return a hashCode value
368 public int hashCode(); method in interface:GSSCredential
/openjdk7/jdk/src/share/classes/java/text/
H A DParsePosition.java126 public int hashCode() { method in class:ParsePosition
/openjdk7/jdk/src/share/classes/java/util/
H A DCollection.java97 * {@link Object#hashCode()} specification guarantees that two objects with
443 * contract for the <tt>Object.hashCode</tt> method, programmers should
445 * method must also override the <tt>Object.hashCode</tt> method in order
446 * to satisfy the general contract for the <tt>Object.hashCode</tt> method.
448 * <tt>c1.hashCode()==c2.hashCode()</tt>.
452 * @see Object#hashCode()
455 int hashCode(); method in interface:Collection
H A DSet.java37 * <tt>hashCode</tt> methods. Declarations for other inherited methods are
376 * <tt>s1.hashCode()==s2.hashCode()</tt> for any two sets <tt>s1</tt>
378 * {@link Object#hashCode}.
384 int hashCode(); method in interface:Set

Completed in 129 milliseconds

1234567891011>>