Searched defs:hashCode (Results 251 - 275 of 847) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DOpenTypeConverter.java90 public int hashCode() { method in class:OpenTypeConverter.InProgress
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacScope.java106 public int hashCode() { method in class:JavacScope
107 return env.hashCode() + (isStarImportScope() ? 1 : 0);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DPair.java60 public int hashCode() { method in class:Pair
61 if (fst == null) return (snd == null) ? 0 : snd.hashCode() + 1;
62 else if (snd == null) return fst.hashCode() + 2;
63 else return fst.hashCode() * 17 + snd.hashCode();
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DElement.java260 * Obeys the general contract of {@link Object#hashCode Object.hashCode}.
264 int hashCode(); method in interface:Element
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbException.java130 @Override public int hashCode() { method in class:KrbException
134 result = 37 * result + error.hashCode();
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAccessDescription.java83 public int hashCode() { method in class:AccessDescription
85 myhash = accessMethod.hashCode() + accessLocation.hashCode();
H A DDNSName.java161 public int hashCode() { method in class:DNSName
162 return name.toUpperCase().hashCode();
H A DDistributionPointName.java92 // Cached hashCode value
93 private volatile int hashCode; field in class:DistributionPointName
213 public int hashCode() { method in class:DistributionPointName
214 int hash = hashCode;
218 hash += fullName.hashCode();
221 hash += relativeName.hashCode();
223 hashCode = hash;
H A DGeneralNames.java142 public int hashCode() { method in class:GeneralNames
143 return names.hashCode();
H A DOIDName.java131 public int hashCode() { method in class:OIDName
132 return oid.hashCode();
H A DRFC822Name.java155 public int hashCode() { method in class:RFC822Name
156 return name.toUpperCase().hashCode();
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionFormat.java58 public int hashCode() { method in class:OptionFormat
59 return name.hashCode();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStringExpression.java73 public int hashCode() { method in class:StringExpression
74 return value.hashCode() ^ 3213;
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DFooNumberFormat.java64 public int hashCode() { method in class:FooNumberFormat
65 return df.hashCode();
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DParameterizedTypeImpl.java207 public int hashCode() { method in class:ParameterizedTypeImpl
209 Arrays.hashCode(actualTypeArguments) ^
210 (ownerType == null ? 0 : ownerType.hashCode() ) ^
211 (rawType == null ? 0 : rawType.hashCode() );
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DResultLogConfig.java175 public int hashCode() { method in class:ResultLogConfig
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DQName.java47 _hashCode = _stringRep.hashCode() + 19; // cached for speed
80 public int hashCode() { method in class:QName
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDDescription.java219 public int hashCode() { method in class:XMLDTDDescription
221 return fExpandedSystemId.hashCode();
224 return fPublicId.hashCode();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBase64BinaryDV.java86 public int hashCode() { method in class:Base64BinaryDV.XBase64
H A DFloatDV.java105 public int hashCode() { method in class:FloatDV.XFloat
H A DHexBinaryDV.java83 public int hashCode() { method in class:HexBinaryDV.XHex
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSymbolTable.java101 if (length == entry.characters.length && hash == entry.hashCode) {
122 entry.hashCode = hash;
143 if (length == entry.characters.length && hash ==entry.hashCode) {
156 entry.hashCode = hash;
214 if (length == entry.characters.length && hash == entry.hashCode) {
250 if (length == entry.characters.length && hash == entry.hashCode) {
281 int hashCode = 0; field in class:SymbolTable.Entry
H A DXMLEntityDescriptionImpl.java144 public int hashCode() { method in class:XMLEntityDescriptionImpl
145 int code = super.hashCode();
147 code += fEntityName.hashCode();
150 } // hashCode():int
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java61 public int hashCode() method in class:FreezableList
63 return delegate.hashCode() ;
H A DObjectReferenceTemplateImpl.java90 public int hashCode() method in class:ObjectReferenceTemplateImpl
92 return iorTemplate.hashCode() ;

Completed in 83 milliseconds

<<11121314151617181920>>