Searched defs:hashCode (Results 201 - 225 of 847) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DReverbType.java276 public final int hashCode() { method in class:ReverbType
277 return super.hashCode();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabSet.java55 private int hashCode = Integer.MAX_VALUE; field in class:TabSet
182 public int hashCode() { method in class:TabSet
183 if (hashCode == Integer.MAX_VALUE) {
184 hashCode = 0;
188 hashCode ^= ts != null ? getTab(i).hashCode() : 0;
190 if (hashCode == Integer.MAX_VALUE) {
191 hashCode -= 1;
194 return hashCode;
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSName.java198 * @return a hashCode value
200 public int hashCode(); method in interface:GSSName
H A DOid.java211 * @return a hashCode value
213 public int hashCode() { method in class:Oid
214 return oid.hashCode();
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodLocator.java80 public int hashCode() { method in class:InputMethodLocator
81 int result = descriptor.hashCode();
83 result |= loader.hashCode() << 10;
86 result |= locale.hashCode() << 20;
/openjdk7/jdk/src/share/classes/java/lang/
H A DEnum.java151 public final int hashCode() { method in class:Enum
152 return super.hashCode();
H A DStackTraceElement.java213 public int hashCode() { method in class:StackTraceElement
214 int result = 31*declaringClass.hashCode() + methodName.hashCode();
215 result = 31*result + Objects.hashCode(fileName);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationDesc.java318 * Return the same hashCode for similar <code>ActivationDesc</code>s.
322 public int hashCode() { method in class:ActivationDesc
325 : location.hashCode() << 24) ^
328 : groupID.hashCode() << 16) ^
331 : className.hashCode() << 9) ^
334 : data.hashCode() << 1) ^
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteObject.java37 * implementing methods for hashCode, equals, and toString.
117 public int hashCode() { method in class:RemoteObject
118 return (ref == null) ? super.hashCode() : ref.remoteHashCode();
/openjdk7/jdk/src/share/classes/java/security/
H A DAllPermission.java114 public int hashCode() { method in class:AllPermission
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPath.java199 * hashCode = path.getType().hashCode();
200 * hashCode = 31*hashCode + path.getCertificates().hashCode();
203 * <code>path1.hashCode()==path2.hashCode()</code> for any two certification
205 * general contract of <code>Object.hashCode</code>.
209 public int hashCode() { method in class:CertPath
210 int hashCode
[all...]
H A DCertificate.java124 public int hashCode() { method in class:Certificate
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DEllipticCurve.java188 * (field.hashCode() << 6) + (a.hashCode() << 4) + (b.hashCode() << 2)
191 public int hashCode() { method in class:EllipticCurve
192 return (field.hashCode() << 6 +
193 (a.hashCode() << 4) +
194 (b.hashCode() << 2));
/openjdk7/jdk/src/share/classes/java/util/
H A DObjects.java93 * @see Object#hashCode
95 public static int hashCode(Object o) { method in class:Objects
96 return o != null ? o.hashCode() : 0;
103 * Arrays#hashCode(Object[])}.
106 * Object#hashCode()} on objects containing multiple fields. For
111 * &#064;Override public int hashCode() {
118 * value can be computed by calling {@link #hashCode(Object)}.
122 * @see Arrays#hashCode(Object[])
123 * @see List#hashCode
126 return Arrays.hashCode(value
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoAllPermission.java88 public int hashCode() { method in class:CryptoAllPermission
/openjdk7/jdk/src/share/classes/javax/management/
H A DDescriptor.java616 * and value {@code v} is {@code n.toLowerCase().hashCode() ^ h}.
623 * the appropriate overloading of {@code java.util.Arrays.hashCode}.</li>
626 * <li>Otherwise {@code h} is {@code v.hashCode()}.</li>
633 public int hashCode(); method in interface:Descriptor
H A DMBeanConstructorInfo.java205 public int hashCode() { method in class:MBeanConstructorInfo
206 int hash = getName().hashCode();
209 hash ^= sig[i].hashCode();
H A DMBeanFeatureInfo.java155 public int hashCode() { method in class:MBeanFeatureInfo
156 return getName().hashCode() ^ getDescription().hashCode() ^
157 getDescriptor().hashCode();
H A DMBeanNotificationInfo.java200 public int hashCode() { method in class:MBeanNotificationInfo
201 int hash = getName().hashCode();
203 hash ^= types[i].hashCode();
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeData.java147 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
150 * {@link Object#hashCode() Object.hashCode()}.
157 * of {@code Arrays.hashCode(e)} for arrays of primitive types.
161 public int hashCode() ; method in interface:CompositeData
H A DOpenMBeanConstructorInfoSupport.java222 * and signature, where the signature hashCode is calculated by a
224 * java.util.Arrays.asList(this.getSignature).hashCode()}).</p>
227 * t1.hashCode()==t2.hashCode()} for any two {@code
230 * {@link Object#hashCode() Object.hashCode()}.</p>
240 * on the first call to {@code hashCode}, and then the same value
246 public int hashCode() { method in class:OpenMBeanConstructorInfoSupport
249 // (ie 1st call to hashCode())
253 value += this.getName().hashCode();
[all...]
H A DOpenMBeanParameterInfo.java191 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
194 * {@link Object#hashCode() Object.hashCode()}.
199 public int hashCode(); method in interface:OpenMBeanParameterInfo
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKStyleFactory.java137 public int hashCode() { method in class:GTKStyleFactory.ComplexKey
138 int hash = wt.hashCode();
141 hash = hash*29 + (arg == null ? 0 : arg.hashCode());
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DEnumerated.java169 public int hashCode() { method in class:Enumerated
171 return hashString.hashCode() ;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DNetMaskImpl.java179 public int hashCode() { method in class:NetMaskImpl
180 return super.hashCode();
232 if ((p.hashCode() & super.hashCode()) == p.hashCode()) return true;

Completed in 44 milliseconds

1234567891011>>