Searched refs:hashCode (Results 226 - 250 of 1062) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularData.java285 * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
288 * {@link Object#hashCode() Object.hashCode()}.
292 public int hashCode(); method in interface:TabularData
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DWeakIdentityHashMap.java101 * WeakReference where equals and hashCode are based on the
104 * hashCode is the value the original referent had. Even if the
105 * referent is cleared, the hashCode remains. Thus, objects of
115 this.hashCode = (o == null) ? 0 : System.identityHashCode(o);
128 public int hashCode() { method in class:WeakIdentityHashMap.IdentityWeakReference
129 return hashCode;
132 private final int hashCode; field in class:WeakIdentityHashMap.IdentityWeakReference
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DNotifierArgs.java37 * It overrides equals() and hashCode() to use all these pieces of
126 public int hashCode() { method in class:NotifierArgs
128 sum = mask + name.hashCode() + filter.hashCode() + controlsCode();
143 total += attrs[i].hashCode();
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DNTNumericCredential.java116 public int hashCode() { method in class:NTNumericCredential
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVoidValueImpl.java40 public int hashCode() { method in class:VoidValueImpl
/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/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputNode.java65 public int hashCode() { method in class:InputNode
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DNSPrintInfo.java48 public int hashCode() { method in class:NSPrintInfo
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DPointer.java49 @Override public int hashCode() { return (int)(ptr^(ptr>>>32)); } method in class:Pointer
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DPatternBuilder.java102 if (p1.hashCode() > ip.p1.hashCode())
105 else if (p1.hashCode() > p2.hashCode())
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/rcache/
H A DAuthTime.java74 public int hashCode() { method in class:AuthTime
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DStringConstantData.java69 return "StringConstantData[" + str + "]=" + str.hashCode();
H A DStringExpressionConstantData.java72 return "StringExpressionConstantData[" + str.getValue() + "]=" + str.getValue().hashCode();
/openjdk7/jdk/test/java/util/Hashtable/
H A DSelfRef.java54 m.hashCode();
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DFileKey.java51 public int hashCode() { method in class:FileKey
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileKey.java42 public int hashCode() { method in class:UnixFileKey
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationInvocationHandler.java63 if (member.equals("hashCode"))
290 * Implementation of dynamicProxy.hashCode()
295 result += (127 * e.getKey().hashCode()) ^
302 * Computes hashCode of a member value (in "dynamic proxy return form")
308 return value.hashCode();
311 return Arrays.hashCode((byte[]) value);
313 return Arrays.hashCode((char[]) value);
315 return Arrays.hashCode((double[]) value);
317 return Arrays.hashCode((float[]) value);
319 return Arrays.hashCode((in
[all...]
/openjdk7/jdk/test/java/util/Arrays/
H A DArrayObjectMethods.java59 equal(Arrays.hashCode(a), PrimitiveArrays.asList(a).hashCode());
64 equal(Arrays.hashCode(a), PrimitiveArrays.asList(a).hashCode());
69 equal(Arrays.hashCode(a), PrimitiveArrays.asList(a).hashCode());
74 equal(Arrays.hashCode(a), PrimitiveArrays.asList(a).hashCode());
79 equal(Arrays.hashCode(a), PrimitiveArrays.asList(a).hashCode());
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DArrayType.java148 public int hashCode() { return basic_type.hashCode() ^ dimensions; } method in class:ArrayType
H A DObjectType.java86 public int hashCode() { return class_name.hashCode(); } method in class:ObjectType
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DSoftReferenceGrammarPool.java162 int hash = hashCode(desc);
190 int hash = hashCode(desc);
218 int hash = hashCode(desc);
240 int hash = hashCode(desc);
335 public int hashCode(XMLGrammarDescription desc) { method in class:SoftReferenceGrammarPool
340 int hash = (targetNamespace != null) ? targetNamespace.hashCode() : 0;
341 hash ^= (expandedSystemId != null) ? expandedSystemId.hashCode() : 0;
344 return desc.hashCode();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectAdapterIdBase.java56 public int hashCode() method in class:ObjectAdapterIdBase
62 result = 37*result + str.hashCode() ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DCodeSetsComponentImpl.java59 public int hashCode() method in class:CodeSetsComponentImpl
61 return csci.hashCode() ;
/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/jdk/src/share/classes/javax/smartcardio/
H A DATR.java155 public int hashCode() { method in class:ATR
156 return Arrays.hashCode(atr);

Completed in 319 milliseconds

1234567891011>>