Searched defs:hashCode (Results 51 - 75 of 847) sorted by relevance

1234567891011>>

/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 DImmediate.java48 public int hashCode() { method in class:Immediate
49 return value.hashCode();
H A DRegister.java70 public int hashCode() { method in class:Register
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteThread.java76 public int hashCode() { method in class:RemoteThread
82 return "t@ " + hashCode();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMirrorImpl.java54 public int hashCode() { method in class:MirrorImpl
55 return vm.hashCode();
H A DTypeImpl.java57 public int hashCode() { method in class:TypeImpl
58 return signature().hashCode();
H A DVoidValueImpl.java39 public int hashCode() { method in class:VoidValueImpl
40 return type().hashCode();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DIndexableFieldIdentifier.java61 public int hashCode() { method in class:IndexableFieldIdentifier
H A DNamedFieldIdentifier.java56 public int hashCode() { method in class:NamedFieldIdentifier
57 return name.hashCode();
/openjdk7/hotspot/agent/src/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();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaObject.java50 public int hashCode() { method in class:JSJavaObject
51 return oop.hashCode();
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDateTimeSyntax.java132 public int hashCode() { method in class:DateTimeSyntax
133 return value.hashCode();
H A DEnumSyntax.java150 public int hashCode() { method in class:EnumSyntax
H A DIntegerSyntax.java122 public int hashCode() { method in class:IntegerSyntax
H A DTextSyntax.java110 public int hashCode() { method in class:TextSyntax
111 return value.hashCode() ^ locale.hashCode();
H A DURISyntax.java82 public int hashCode() { method in class:URISyntax
83 return uri.hashCode();
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIClientSocketFactory.java53 * #hashCode() hashCode} may also need to be overridden.</p>
172 * as {@link #hashCode()}) if its instances are not all
188 public int hashCode() { method in class:SslRMIClientSocketFactory
189 return this.getClass().hashCode();
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyTab.java204 * @return a hashCode() for the <code>KeyTab</code>
206 public int hashCode() { method in class:KeyTab
/openjdk7/jdk/src/share/classes/javax/security/cert/
H A DCertificate.java102 public int hashCode() { method in class:Certificate
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DATR.java155 public int hashCode() { method in class:ATR
156 return Arrays.hashCode(atr);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DControl.java129 * Finalizes the hashCode method
131 public final int hashCode() { method in class:Control.Type
132 return super.hashCode();
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DChannelBinding.java200 * @return a hashCode value
202 public int hashCode() { method in class:ChannelBinding
204 return initiator.hashCode();
206 return acceptor.hashCode();
208 return new String(appData).hashCode();
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPixelInterleavedSampleModel.java168 public int hashCode() { method in class:PixelInterleavedSampleModel
169 return super.hashCode() ^ 0x1;
/openjdk7/jdk/src/share/classes/java/lang/
H A DObject.java71 * The general contract of {@code hashCode} is:
74 * an execution of a Java application, the {@code hashCode} method
80 * method, then calling the {@code hashCode} method on each of
84 * method, then calling the {@code hashCode} method on each of the
90 * As much as is reasonably practical, the hashCode method defined by
101 public native int hashCode(); method in class:Object
138 * Note that it is generally necessary to override the {@code hashCode}
140 * general contract for the {@code hashCode} method, which states
146 * @see #hashCode()
231 * getClass().getName() + '@' + Integer.toHexString(hashCode())
[all...]

Completed in 1131 milliseconds

1234567891011>>