Searched defs:hashCode (Results 326 - 350 of 794) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/evaluation/value/
H A DUnknownDoubleValue.java115 public int hashCode() method in class:UnknownDoubleValue
117 return this.getClass().hashCode();
H A DUnknownFloatValue.java115 public int hashCode() method in class:UnknownFloatValue
117 return this.getClass().hashCode();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistryLite.java157 public int hashCode() { method in class:ExtensionRegistryLite.ObjectIntPair
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java175 // equals() and hashCode()
207 public int hashCode() { method in class:ByteStringMicro
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DFieldData.java154 public int hashCode() { method in class:FieldData
158 result = 31 * result + Arrays.hashCode(toByteArray());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowHtml.java83 public int hashCode() { method in class:ShadowHtml.SpannedThatActsLikeString
84 return source != null ? source.hashCode() : 0;
H A DShadowSparseBooleanArray.java86 public int hashCode() { method in class:ShadowSparseBooleanArray
87 return sparseArray.hashCode();
/external/smack/src/com/kenai/jbosh/
H A DBodyQName.java135 public int hashCode() { method in class:BodyQName
136 return qname.hashCode();
/external/smack/src/org/jivesoftware/smack/
H A DRosterEntry.java185 public int hashCode() { method in class:RosterEntry
186 return this.user.hashCode();
/external/smack/src/org/xbill/DNS/
H A DEDNSOption.java205 hashCode() { method in class:EDNSOption
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DLabelMethodItem.java63 public int hashCode() { method in class:LabelMethodItem
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderProtoPool.java131 @Override public int hashCode() { method in class:BuilderProtoPool.Key
132 int hashCode = returnType.hashCode();
133 return hashCode*31 + parameters.hashCode();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DProtoPool.java62 // hashCode and equals based only on the prototype fields
112 public int hashCode() { method in class:ProtoPool.Key
113 int hashCode = getReturnType().hashCode();
114 return hashCode*31 + CharSequenceUtils.listHashCode(getParameters());
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java385 public final int hashCode() { method in class:HttpRoute
387 int hc = this.targetHost.hashCode();
390 hc ^= localAddress.hashCode();
393 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode();
399 hc ^= this.tunnelled.hashCode();
400 hc ^= this.layered.hashCode();
H A DRouteTracker.java376 public final int hashCode() { method in class:RouteTracker
378 int hc = this.targetHost.hashCode();
381 hc ^= localAddress.hashCode();
385 hc ^= proxyChain[i].hashCode();
393 hc ^= this.tunnelled.hashCode();
394 hc ^= this.layered.hashCode();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DQName.java125 m_hashCode = toString().hashCode();
179 m_hashCode = toString().hashCode();
221 m_hashCode = toString().hashCode();
312 m_hashCode = toString().hashCode();
400 m_hashCode = toString().hashCode();
479 m_hashCode = toString().hashCode();
571 public int hashCode() method in class:QName
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateHolder.java342 public int hashCode() method in class:AttributeCertificateHolder
344 return this.holder.hashCode();
H A DX509AttributeCertificateHolder.java362 public int hashCode() method in class:X509AttributeCertificateHolder
364 return this.attrCert.hashCode();
H A DX509CRLHolder.java313 public int hashCode() method in class:X509CRLHolder
315 return this.x509CRL.hashCode();
H A DX509CertificateHolder.java311 public int hashCode() method in class:X509CertificateHolder
313 return this.x509Certificate.hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Set.java262 public int hashCode() method in class:ASN1Set
265 int hashCode = size();
270 hashCode *= 17;
272 hashCode ^= o.hashCode();
275 return hashCode;
H A DDERBitString.java224 public int hashCode() method in class:DERBitString
226 return padBits ^ Arrays.hashCode(data);
H A DDERExternal.java97 * @see java.lang.Object#hashCode()
99 public int hashCode() method in class:DERExternal
104 ret = directReference.hashCode();
108 ret ^= indirectReference.hashCode();
112 ret ^= dataValueDescriptor.hashCode();
114 ret ^= externalContent.hashCode();
H A DDERObjectIdentifier.java319 public int hashCode() method in class:DERObjectIdentifier
321 return identifier.hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPrivateKey.java168 public int hashCode() method in class:BCDHPrivateKey
170 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
171 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();

Completed in 5133 milliseconds

<<11121314151617181920>>