Searched refs:hashCode (Results 101 - 125 of 1062) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/
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/net/
H A DProxy.java166 public final int hashCode() { method in class:Proxy
168 return type().hashCode();
169 return type().hashCode() + address().hashCode();
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java106 public int hashCode() { method in class:CodeSigner
109 myhash = signerCertPath.hashCode();
111 myhash = signerCertPath.hashCode() + timestamp.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 DOpenMBeanOperationInfo.java157 * (ie: its name, return open type, impact and signature, where the signature hashCode is calculated by a call to
158 * <tt>java.util.Arrays.asList(this.getSignature).hashCode()</tt>).
160 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
163 * {@link Object#hashCode() Object.hashCode()}.
168 public int hashCode(); method in interface:OpenMBeanOperationInfo
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocalVariable.java152 int hashCode(); method in interface:LocalVariable
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DWatchpointSpec.java75 public int hashCode() { method in class:WatchpointSpec
76 return refSpec.hashCode() + fieldId.hashCode() +
77 getClass().hashCode();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DReferenceTypeSpec.java48 int hashCode(); method in interface:ReferenceTypeSpec
/openjdk7/hotspot/test/compiler/6859338/
H A DTest6859338.java43 total += o[j].hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DUniqueValue.java59 * part number, a newly created object's <code>hashCode()</code>,
67 append(s.hashCode()).append('.').
/openjdk7/jdk/test/java/math/BigDecimal/
H A DSerializationTests.java47 bd.hashCode() != tmp.hashCode()) {
49 System.err.println(" (hash: 0x" + Integer.toHexString(bd.hashCode()) + ")");
51 System.err.println(" (hash: 0x" + Integer.toHexString(tmp.hashCode()) + ")");
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DParameterDeclarationImpl.java83 public int hashCode() { method in class:ParameterDeclarationImpl
84 return sym.owner.hashCode() + sym.name.hashCode() + env.hashCode();
/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DTypeMirror.java82 * Obeys the general contract of {@link Object#hashCode Object.hashCode}.
86 int hashCode(); method in interface:TypeMirror
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSNameSpi.java71 * @return a hashCode value
73 public int hashCode(); method in interface:GSSNameSpi
/openjdk7/jdk/test/java/security/UnresolvedPermission/
H A DDebugPermission2.java38 public int hashCode() { method in class:DebugPermission2
H A DDebugPermissionBad.java38 public int hashCode() { method in class:DebugPermissionBad
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMutableInteger.java41 public int hashCode() { method in class:MutableInteger
/openjdk7/langtools/test/tools/javac/
H A DObject1.java36 public native int hashCode(); method in class:Object
H A DObject2.java36 public native int hashCode(); method in class:Object
/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...]
/openjdk7/jdk/test/javax/management/proxy/
H A DProxyObjectMethodsTest.java86 if (simple0.hashCode() != simple1.hashCode() ||
87 simple.hashCode() == simple0.hashCode()) {
88 throw new RuntimeException("The method hashCode does not work correctly.");
126 if (test0.hashCode() != 123) {
127 throw new RuntimeException("The method hashCode is not done remotely as expected.");
174 public int hashCode(); method in interface:ProxyObjectMethodsTest.TestMBean
188 public int hashCode() { method in class:ProxyObjectMethodsTest.Test
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DSchemaDocumentImpl.java123 public int hashCode() { method in class:SchemaDocumentImpl
125 return super.hashCode();
127 return schemaDocumentURI.hashCode();
129 return schemaDocumentURI.hashCode()^this.schema.hashCode();
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontStrikeDesc.java76 private int hashCode; field in class:FontStrikeDesc
79 public int hashCode() { method in class:FontStrikeDesc
81 if (hashCode == 0) {
82 hashCode = glyphTx.hashCode() + devTx.hashCode() + valuemask;
84 return hashCode;
237 hashCode = desc.hashCode;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLResourceIdentifierImpl.java185 public int hashCode() { method in class:XMLResourceIdentifierImpl
188 code += fPublicId.hashCode();
191 code += fLiteralSystemId.hashCode();
194 code += fBaseSystemId.hashCode();
197 code += fExpandedSystemId.hashCode();
200 code += fNamespace.hashCode();
203 } // hashCode():int

Completed in 171 milliseconds

1234567891011>>