Searched refs:hashCode (Results 126 - 150 of 1062) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DFontRenderContext.java344 public int hashCode() { method in class:FontRenderContext
345 int hash = tx == null ? 0 : tx.hashCode();
350 hash += getAntiAliasingHint().hashCode();
351 hash += getFractionalMetricsHint().hashCode();
353 hash += aaHintValue.hashCode();
354 hash += fmHintValue.hashCode();
/openjdk7/jdk/src/share/classes/sun/security/x509/
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;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DStubIORImpl.java59 private int hashCode; field in class:StubIORImpl
68 hashCode = 0 ;
159 public synchronized int hashCode() method in class:StubIORImpl
161 if (hashCode == 0) {
165 hashCode = hashCode * 37 + typeData[i];
169 hashCode = hashCode * 37 + profileTags[i];
171 hashCode = hashCode * 3
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DReturnaddressType.java90 public int hashCode() { method in class:ReturnaddressType
91 return Objects.hashCode(this.returnTarget);
/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/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DAlternateIIOPAddressComponentImpl.java56 public int hashCode() method in class:AlternateIIOPAddressComponentImpl
58 return addr.hashCode() ;
H A DIIOPAddressBase.java78 public int hashCode() method in class:IIOPAddressBase
80 return getHost().hashCode() ^ getPort() ;
H A DJavaCodebaseComponentImpl.java57 public int hashCode() method in class:JavaCodebaseComponentImpl
59 return URLs.hashCode() ;
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiDevice.java340 public final int hashCode() { method in class:MidiDevice.Info
341 return super.hashCode();
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineEvent.java191 public final int hashCode() { method in class:LineEvent.Type
192 return super.hashCode();
H A DPort.java190 * Finalizes the hashCode method
192 public final int hashCode() { method in class:Port.Info
193 return super.hashCode();
H A DReverbType.java276 public final int hashCode() { method in class:ReverbType
277 return super.hashCode();
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedCollationKey.java87 * if x and y are RuleBasedCollationKeys, then x.hashCode(x) == y.hashCode() if
92 public int hashCode() { method in class:RuleBasedCollationKey
93 return (key.hashCode());
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSet.java42 * for <tt>equals</tt> and <tt>hashCode</tt>.<p>
108 * <tt>s1.hashCode()==s2.hashCode()</tt> for any two sets <tt>s1</tt>
110 * {@link Object#hashCode}.
113 * <tt>hashCode</tt> method on each element in the set, and adding up
120 public int hashCode() { method in class:AbstractSet
126 h += obj.hashCode();
H A DMap.java49 * advised: the <tt>equals</tt> and <tt>hashCode</tt> methods are no longer
99 * {@link Object#hashCode()} specification guarantees that two objects with
431 * (e.getKey()==null ? 0 : e.getKey().hashCode()) ^
432 * (e.getValue()==null ? 0 : e.getValue().hashCode())
435 * <tt>e1.hashCode()==e2.hashCode()</tt> for any two Entries
437 * contract of <tt>Object.hashCode</tt>.
440 * @see Object#hashCode()
444 int hashCode(); method in interface:Map.Entry
467 * implies that <tt>m1.hashCode()
476 int hashCode(); method in interface:Map
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DNamedObject.java104 public int hashCode() { method in class:NamedObject
105 return name.hashCode();
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpPrincipal.java92 * as <code>(getUsername()+getRealm().hashCode()</code>
94 public int hashCode() { method in class:HttpPrincipal
95 return (username+realm).hashCode();
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DLdapPrincipal.java110 public int hashCode() { method in class:LdapPrincipal
111 return name.hashCode();
H A DSolarisPrincipal.java143 public int hashCode() { method in class:SolarisPrincipal
144 return name.hashCode();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSourceNameReferenceTypeSpec.java70 public int hashCode() { method in class:SourceNameReferenceTypeSpec
71 return sourceName.hashCode() + linenumber;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DGenericArrayTypeImpl.java78 public int hashCode() { method in class:GenericArrayTypeImpl
79 return genericComponentType.hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArrayString.java50 public int hashCode() { method in class:CharArrayString
51 return _s.hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/nc/
H A DAnyNameExceptNameClass.java72 public int hashCode() { method in class:AnyNameExceptNameClass
73 return ~nameClass.hashCode();
H A DNsNameClass.java67 public int hashCode() { method in class:NsNameClass
68 return namespaceUri.hashCode();
H A DSimpleNameClass.java71 public int hashCode() { method in class:SimpleNameClass
72 return name.hashCode();

Completed in 89 milliseconds

1234567891011>>