Searched refs:hashCode (Results 51 - 75 of 1549) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DRegisterValue.java53 public int hashCode() { method in class:RegisterValue
54 return 29 * super.hashCode() + reg.hashCode();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLErrorCode.java82 public int hashCode() { method in class:XMLErrorCode
83 return fDomain.hashCode() + fKey.hashCode();
/openjdk10/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/internal/
H A DRow.java82 public int hashCode() { method in class:Row
83 return option.hashCode() ^ description.hashCode();
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DNameAndTypeData.java51 public int hashCode() { method in class:NameAndTypeData
52 return field.getName().hashCode() * field.getType().hashCode();
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/pubapi/
H A DArrayTypeDesc.java51 public int hashCode() { method in class:ArrayTypeDesc
52 return super.hashCode() ^ compTypeDesc.hashCode();
H A DReferenceTypeDesc.java52 public int hashCode() { method in class:ReferenceTypeDesc
53 return super.hashCode() ^ javaType.hashCode();
H A DTypeVarTypeDesc.java51 public int hashCode() { method in class:TypeVarTypeDesc
52 return super.hashCode() ^ identifier.hashCode();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/util/
H A DBCELComparator.java43 * Return hashcode for THIS.hashCode()
46 * @return hashcode for THIS.hashCode()
48 int hashCode( Object THIS ); method in interface:BCELComparator
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/
H A DWatchpointSpec.java50 public int hashCode() { method in class:WatchpointSpec
51 return refSpec.hashCode() + fieldId.hashCode() +
52 getClass().hashCode();
/openjdk10/jdk/src/java.management/share/classes/javax/management/openmbean/
H A DOpenMBeanConstructorInfo.java114 * (ie: its name and signature, where the signature hashCode is calculated by a call to
115 * {@code java.util.Arrays.asList(this.getSignature).hashCode()}).
117 * This ensures that {@code t1.equals(t2)} implies that {@code t1.hashCode()==t2.hashCode()}
120 * {@link Object#hashCode() Object.hashCode()}.
124 public int hashCode(); method in interface:OpenMBeanConstructorInfo
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DField.java134 int hashCode(); method in interface:Field
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/
H A DRefAddr.java127 * @see java.lang.Object#hashCode
129 public int hashCode() { method in class:RefAddr
131 ? addrType.hashCode()
132 : addrType.hashCode() + getContent().hashCode();
/openjdk10/jdk/test/java/security/UnresolvedPermission/
H A DDebugPermission1.java38 public int hashCode() { method in class:DebugPermission1
H A DDebugPermission0.java38 public int hashCode() { method in class:DebugPermission0
/openjdk10/jdk/test/javax/security/auth/kerberos/
H A DDelegationPermissionHash.java31 * @summary Checks if DelegationPermission.hashCode() works fine
59 System.out.println("one.hashCode() = " + one.hashCode());
60 System.out.println("two.hashCode() = " + two.hashCode());
61 if (one.hashCode() != two.hashCode()) {
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/
H A DAnnotatedMethodSelectorTest2.java14 }.hashCode();
/openjdk10/langtools/test/tools/javac/flow/tests/
H A DTestCaseWhile.java11 o.hashCode();
H A DTestCaseDoLoop.java11 o.hashCode();
/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaScope03.java52 call(()-> { assertTrue(LambdaScope03.this.hashCode() == hashCode()); });
53 call(()-> { assertTrue(LambdaScope03.this.hashCode() == this.hashCode()); });
/openjdk10/nashorn/test/src/jdk/nashorn/test/models/
H A DOverrideObject.java31 public int hashCode() { method in class:OverrideObject
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DNamedFieldIdentifier.java56 public int hashCode() { method in class:NamedFieldIdentifier
57 return name.hashCode();
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotResolvedJavaType.java45 public final int hashCode() { method in class:HotSpotResolvedJavaType
46 return getName().hashCode();
/openjdk10/hotspot/test/compiler/print/
H A DTestProfileReturnTypePrinting.java47 return TestProfileReturnTypePrinting.foo().hashCode()
48 + TestProfileReturnTypePrinting.bar(i).hashCode();
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DControl.java118 public final int hashCode() { method in class:Control.Type
119 return super.hashCode();
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DPrinterJobWrapper.java58 public int hashCode() { method in class:PrinterJobWrapper
59 return job.hashCode();

Completed in 274 milliseconds

1234567891011>>