Searched refs:hashCode (Results 51 - 75 of 1062) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DControl.java129 * Finalizes the hashCode method
131 public final int hashCode() { method in class:Control.Type
132 return super.hashCode();
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECFieldFp.java95 public int hashCode() { method in class:ECFieldFp
96 return p.hashCode();
H A DECPoint.java110 public int hashCode() { method in class:ECPoint
112 return x.hashCode() << 5 + y.hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DCDATA.java53 public int hashCode() { method in class:CDATA
54 return _text.hashCode();
/openjdk7/jdk/test/java/net/InetAddress/
H A DMyPrincipal.java58 public int hashCode() { method in class:MyPrincipal
59 return name.hashCode();
/openjdk7/jdk/test/javax/naming/RefAddr/
H A DNullContent.java43 addr1.hashCode();
44 addr2.hashCode();
/openjdk7/jdk/src/share/classes/sun/print/
H A DSunAlternateMedia.java66 public int hashCode() { method in class:SunAlternateMedia
67 return media.hashCode();
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DPermissionImpl.java76 public int hashCode() { method in class:PermissionImpl
77 return toString().hashCode();
H A DPrincipalImpl.java72 public int hashCode() { method in class:PrincipalImpl
73 return user.hashCode();
/openjdk7/jdk/test/javax/management/openmbean/
H A DEqualsTest.java70 if (ct1.hashCode() != ct2.hashCode()) {
71 throw new RuntimeException("CompositeType.hashCode fails!");
88 if (compositeData0.hashCode() != compositeData1.hashCode()) {
89 throw new RuntimeException("CompositeDataSupport.hashCode fails!");
113 if (compositeData2.hashCode() != compositeData3.hashCode()) {
114 throw new RuntimeException("CompositeDataSupport.hashCode fails!");
167 if (compositeData5.hashCode() !
[all...]
/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/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DExtendedType.java49 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
79 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
96 * Override the hashCode() method in the Object class
98 public int hashCode() method in class:ExtendedType
/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/jdk/test/java/util/Map/
H A DEntryHashCode.java31 * @summary Map.Entry implementations need to comply with Map.Entry.hashCode() defined behaviour.
64 return (hashCode() - o.hashCode());
87 (Objects.hashCode(key) ^ Objects.hashCode(value));
89 if (e.hashCode() != expectedEntryHashCode) {
92 ".hashCode() does not conform to defined" +
93 " behaviour of java.util.Map.Entry.hashCode()");
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DTextSyntax.java110 public int hashCode() { method in class:TextSyntax
111 return value.hashCode() ^ locale.hashCode();
/openjdk7/jdk/src/share/classes/java/net/
H A DInterfaceAddress.java99 * @see java.net.InterfaceAddress#hashCode()
120 public int hashCode() { method in class:InterfaceAddress
121 return address.hashCode() + ((broadcast != null) ? broadcast.hashCode() : 0) + maskLength;
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttribute.java123 public int hashCode() { method in class:Attribute
124 return name.hashCode() ^ (value == null ? 0 : value.hashCode());
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBlockEdge.java60 public int hashCode() { method in class:InputBlockEdge
61 int hash = from.hashCode();
62 hash = 59 * hash + to.hashCode();
H A DPair.java69 public int hashCode() { method in class:Pair
70 return l.hashCode() * 71 + r.hashCode();
H A DProperty.java76 public int hashCode() { method in class:Property
77 return name.hashCode() + value == null ? 0 : value.hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DWildcardTypeImpl.java53 public int hashCode() { method in class:WildcardTypeImpl
54 return Arrays.hashCode(lb) ^ Arrays.hashCode(ub);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/nc/
H A DNsNameExceptNameClass.java79 public int hashCode() { method in class:NsNameExceptNameClass
80 return namespaceURI.hashCode() ^ nameClass.hashCode();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DActionBasedOperationSignature.java60 public int hashCode() { method in class:ActionBasedOperationSignature
61 int result = action.hashCode();
62 result = 31 * result + payloadQName.hashCode();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DObjectEndpoint.java80 public int hashCode() { method in class:ObjectEndpoint
81 return id.hashCode() ^ (transport != null ? transport.hashCode() : 0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DTypeImpl.java57 public int hashCode() { method in class:TypeImpl
58 return signature().hashCode();

Completed in 371 milliseconds

1234567891011>>