Searched refs:hashCode (Results 1 - 25 of 1062) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DMemberOver.java36 int hashCode(); method in interface:T
H A DObjectMembers.java33 @ObjectMembers(hashCode = 23)
/openjdk7/langtools/test/tools/javac/
H A DSuperMeth.java36 int h = new Outer().hashCode();
43 public int hashCode() { return Outer.super.hashCode(); } method in class:Outer.Inner
45 public int hashCode() { return inner.hashCode(); } method in class:Outer
H A DInterfaceObjectIncompatibility.java36 int hashCode() throws Exception; method in interface:InterfaceObjectIncompatibility
H A DPrivateUplevelConstant.java39 public int hashCode() {
H A DConditionalWithVoid.java35 System.out.println(o instanceof String ? o.hashCode() : o.wait());
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DGroupImpl.java81 public int hashCode() { method in class:GroupImpl
82 return super.hashCode();
95 if ((super.hashCode() & p.hashCode()) == p.hashCode()) return true;
109 if ((p.hashCode() & super.hashCode()) == p.hashCode()) return true;
/openjdk7/jdk/src/share/classes/java/sql/
H A DRowId.java118 int hashCode(); method in interface:RowId
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DBooleanValue.java60 int hashCode(); method in interface:BooleanValue
H A DVoidValue.java50 int hashCode(); method in interface:VoidValue
H A DByteValue.java59 int hashCode(); method in interface:ByteValue
H A DCharValue.java60 int hashCode(); method in interface:CharValue
H A DDoubleValue.java60 int hashCode(); method in interface:DoubleValue
H A DFloatValue.java60 int hashCode(); method in interface:FloatValue
H A DIntegerValue.java60 int hashCode(); method in interface:IntegerValue
H A DLongValue.java60 int hashCode(); method in interface:LongValue
H A DShortValue.java60 int hashCode(); method in interface:ShortValue
/openjdk7/jdk/test/javax/print/
H A DTestRaceCond.java50 if (pserv1.hashCode() != pserv2.hashCode()) {
52 + "services: " + pserv1.hashCode() + " "
53 + pserv2.hashCode());
/openjdk7/jdk/test/java/security/BasicPermission/
H A DExitVMEquals.java43 // Test against hashCode spec
44 if (bp1.hashCode() != bp1.getName().hashCode())
45 sb.append("bp1 hashCode not spec consistent\n");
46 if (bp2.hashCode() != bp2.getName().hashCode())
47 sb.append("bp2 hashCode not spec consistent\n");
61 // Tests against common knowledge: If equals, then hashCode should be same
63 if (bp1.hashCode() != bp2.hashCode()) {
[all...]
/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DAnnotation.java87 * of the member-name as computed by {@link String#hashCode()}) XOR
93 * <tt><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</tt>, where
101 * <tt><i>v</i>.hashCode()</tt>. (In the case of annotation
106 * {@link java.util.Arrays#hashCode(long[]) Arrays.hashCode}
113 int hashCode(); method in interface:Annotation
/openjdk7/jdk/src/share/classes/java/security/
H A DPrincipal.java64 public int hashCode(); method in interface:Principal
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfo.java112 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
115 * {@link Object#hashCode() Object.hashCode()}.
120 public int hashCode(); method in interface:OpenMBeanAttributeInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DItem.java125 int hashCode; field in class:Item
163 hashCode = i.hashCode;
174 this.hashCode = 0x7FFFFFFF & (type + intVal);
185 this.hashCode = 0x7FFFFFFF & (type + (int) longVal);
196 this.hashCode = 0x7FFFFFFF & (type + (int) floatVal);
207 this.hashCode = 0x7FFFFFFF & (type + (int) doubleVal);
233 hashCode = 0x7FFFFFFF & (type + strVal1.hashCode());
236 hashCode
[all...]
/openjdk7/jdk/test/java/net/URL/
H A DHashCode.java27 * @summary Test URL.hashCode with null host
37 int code = url.hashCode();
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DName.java70 * Obeys the general contract of {@link Object#hashCode Object.hashCode}.
74 int hashCode(); method in interface:Name

Completed in 167 milliseconds

1234567891011>>