Searched defs:hashCode (Results 1 - 25 of 847) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/
H A DInterfaceObjectIncompatibility.java36 int hashCode() throws Exception; method in interface:InterfaceObjectIncompatibility
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
/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DMemberOver.java36 int hashCode(); method in interface:T
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DVoidValue.java50 int hashCode(); method in interface:VoidValue
H A DBooleanValue.java60 int hashCode(); method in interface:BooleanValue
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/java/net/InetAddress/
H A DMyPrincipal.java58 public int hashCode() { method in class:MyPrincipal
59 return name.hashCode();
/openjdk7/jdk/test/java/security/UnresolvedPermission/
H A DDebugPermission0.java38 public int hashCode() { method in class:DebugPermission0
/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/java/security/spec/
H A DECFieldFp.java95 public int hashCode() { method in class:ECFieldFp
96 return p.hashCode();
/openjdk7/jdk/src/share/classes/java/sql/
H A DRowId.java118 int hashCode(); method in interface:RowId
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedCollationKey.java87 * if x and y are RuleBasedCollationKeys, then x.hashCode(x) == y.hashCode() if
92 public int hashCode() { method in class:RuleBasedCollationKey
93 return (key.hashCode());
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSet.java42 * for <tt>equals</tt> and <tt>hashCode</tt>.<p>
108 * <tt>s1.hashCode()==s2.hashCode()</tt> for any two sets <tt>s1</tt>
110 * {@link Object#hashCode}.
113 * <tt>hashCode</tt> method on each element in the set, and adding up
120 public int hashCode() { method in class:AbstractSet
126 h += obj.hashCode();
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsNameParser.java52 public int hashCode() { method in class:DnsNameParser
53 return DnsNameParser.class.hashCode() + 1;
/openjdk7/jdk/src/share/classes/java/awt/
H A DAttributeValue.java48 // This hashCode is used by the sun.awt implementation as an array
50 public int hashCode() { method in class:AttributeValue
/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
/openjdk7/jdk/src/share/classes/sun/swing/
H A DBakedArrayList.java38 * A specialized ArrayList that caches its hashCode as well as overriding
40 * where the list won't change and you want to avoid the overhead of hashCode
41 * iterating through the elements invoking hashCode. This also assumes you'll
48 * The cached hashCode.
71 _hashCode = 31 * _hashCode + get(counter).hashCode();
75 public int hashCode() { method in class:BakedArrayList
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DNameAndTypeData.java51 public int hashCode() { method in class:NameAndTypeData
52 return field.getName().hashCode() * field.getType().hashCode();

Completed in 55 milliseconds

1234567891011>>