Searched refs:hashCode (Results 101 - 125 of 1549) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/security/spec/
H A DECPoint.java110 public int hashCode() { method in class:ECPoint
112 return x.hashCode() << 5 + y.hashCode();
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DKeyValueHolder.java110 * is {@code key.hashCode() ^ value.hashCode()}. Note that key and
111 * value are non-null, so hashCode() can be called safely on them.
114 public int hashCode() { method in class:KeyValueHolder
115 return key.hashCode() ^ value.hashCode();
/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DResolvedModule.java113 * and satisfies the general contract of the {@link Object#hashCode
114 * Object.hashCode} method. </p>
119 public int hashCode() { method in class:ResolvedModule
120 return cf.hashCode() ^ mref.hashCode();
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DInterfaceAddress.java99 * @see java.net.InterfaceAddress#hashCode()
120 public int hashCode() { method in class:InterfaceAddress
121 return address.hashCode() + ((broadcast != null) ? broadcast.hashCode() : 0) + maskLength;
/openjdk10/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/util/
H A DKeyValuePair.java105 public int hashCode() { method in class:KeyValuePair
106 return key.hashCode() ^ value.hashCode();
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/
H A DObjectEndpoint.java80 public int hashCode() { method in class:ObjectEndpoint
81 return id.hashCode() ^ (transport != null ? transport.hashCode() : 0);
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DAttribute.java123 public int hashCode() { method in class:Attribute
124 return name.hashCode() ^ (value == null ? 0 : value.hashCode());
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/
H A DJavaFileObjectWithLocation.java57 public int hashCode() { method in class:JavaFileObjectWithLocation
58 return loc.hashCode() ^ fileObject.hashCode();
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DDistributionPointName.java92 // Cached hashCode value
93 private volatile int hashCode; field in class:DistributionPointName
213 public int hashCode() { method in class:DistributionPointName
214 int hash = hashCode;
218 hash += fullName.hashCode();
221 hash += relativeName.hashCode();
223 hashCode = hash;
H A DCertificatePolicyId.java106 public int hashCode() { method in class:CertificatePolicyId
107 return id.hashCode();
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DSimpleClientId.java57 pwdHashCode = Arrays.hashCode((byte[])passwd);
60 pwdHashCode = Arrays.hashCode((char[])passwd);
63 pwdHashCode = passwd.hashCode();
66 myHash = super.hashCode()
67 ^ (username != null ? username.hashCode() : 0)
93 public int hashCode() { method in class:SimpleClientId
/openjdk10/jdk/test/java/io/FilePermission/
H A DFilePermissionCollectionMerge.java63 Asserts.assertNE(fp1.hashCode(), fp2.hashCode());
66 Asserts.assertNE(fp1.hashCode(), fp3.hashCode());
69 Asserts.assertNE(fp2.hashCode(), fp3.hashCode());
/openjdk10/jdk/test/javax/sql/testng/util/
H A DSuperHero.java103 public int hashCode() { method in class:SuperHero
104 return ((31 + first.hashCode()) * 31) * 31
105 + ((31 + last.hashCode()) * 31) * 31
106 + ((31 + firstYear.hashCode()) * 31) * 31
107 + ((31 + type.hashCode()) * 31) * 31
108 + secretIdentity.hashCode();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DVMObject.java32 class would have to implement equals() and hashCode() with
65 public int hashCode() { method in class:VMObject
66 return addr.hashCode();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSMetadata.java50 public int hashCode() { method in class:JSMetadata
51 return metadata.hashCode();
H A DJSJavaObject.java50 public int hashCode() { method in class:JSJavaObject
51 return oop.hashCode();
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DConstantReference.java51 public int hashCode() { method in class:ConstantReference
52 return constant.hashCode();
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DDateTimeSyntax.java125 public int hashCode() { method in class:DateTimeSyntax
126 return value.hashCode();
H A DURISyntax.java83 public int hashCode() { method in class:URISyntax
84 return uri.hashCode();
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DSunAlternateMedia.java67 public int hashCode() { method in class:SunAlternateMedia
68 return media.hashCode();
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/nc/
H A DNullNameClass.java63 public int hashCode() { method in class:NullNameClass
64 return NullNameClass.class.hashCode();
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJModuleDirective.java99 * {@code 97 * (type_ordinal_value + 1) + name.hashCode()}
106 public int hashCode() { method in class:JModuleDirective
107 return 97 * (getType().ordinal() + 1) + name.hashCode();
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/binary/
H A DAfterPattern.java55 combineHashCode(AFTER_HASH_CODE, p1.hashCode(), p2.hashCode()),
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DTypeImpl.java57 public int hashCode() { method in class:TypeImpl
58 return signature().hashCode();
/openjdk10/jdk/src/java.rmi/share/classes/java/rmi/activation/
H A DActivationGroupID.java91 public int hashCode() { method in class:ActivationGroupID
92 return uid.hashCode();

Completed in 244 milliseconds

1234567891011>>