Searched defs:hashCode (Results 151 - 175 of 671) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPoint.java60 public int hashCode() { method in class:ShadowPoint
H A DShadowPointF.java62 public int hashCode() { method in class:ShadowPointF
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
H A DQName.java248 * <code>Object.hashCode</code> method.
252 public final int hashCode() { method in class:QName
253 return namespaceURI.hashCode() ^ localPart.hashCode();
/external/smack/src/com/kenai/jbosh/
H A DQName.java248 * <code>Object.hashCode</code> method.
252 public final int hashCode() { method in class:QName
253 return namespaceURI.hashCode() ^ localPart.hashCode();
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DHostAddress.java93 public int hashCode() { method in class:HostAddress
95 result = 37 * result + fqdn.hashCode();
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java113 public int hashCode() { method in class:Occupant
115 result = affiliation.hashCode();
116 result = 17 * result + role.hashCode();
117 result = 17 * result + jid.hashCode();
118 result = 17 * result + (nick != null ? nick.hashCode() : 0);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DLabelMethodItem.java60 public int hashCode() { method in class:LabelMethodItem
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedSubValue.java43 private int hashCode = 0; field in class:AnnotationEncodedSubValue
153 hashCode = annotationType.hashCode();
156 hashCode = 31 * hashCode + names[i].hashCode();
157 hashCode = 31 * hashCode + values[i].hashCode();
162 public int hashCode() { method in class:AnnotationEncodedSubValue
[all...]
H A DArrayEncodedSubValue.java41 private int hashCode = 0; field in class:ArrayEncodedSubValue
126 hashCode = 0;
129 hashCode = 31 * hashCode + encodedValue.hashCode();
134 public int hashCode() { method in class:ArrayEncodedSubValue
137 if (hashCode == 0)
139 return hashCode;
H A DBooleanEncodedValue.java106 public int hashCode() { method in class:BooleanEncodedValue
H A DEnumEncodedValue.java92 public int hashCode() { method in class:EnumEncodedValue
93 return value.hashCode();
H A DFieldEncodedValue.java92 public int hashCode() { method in class:FieldEncodedValue
93 return value.hashCode();
H A DMethodEncodedValue.java92 public int hashCode() { method in class:MethodEncodedValue
93 return value.hashCode();
H A DStringEncodedValue.java93 public int hashCode() { method in class:StringEncodedValue
94 return value.hashCode();
H A DTypeEncodedValue.java92 public int hashCode() { method in class:TypeEncodedValue
93 return value.hashCode();
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/apache-http/src/org/apache/http/
H A DHttpHost.java58 /** The lowercase host, for {@link #equals} and {@link #hashCode}. */
204 * @see java.lang.Object#hashCode()
206 public int hashCode() { method in class:HttpHost
208 hash = LangUtils.hashCode(hash, this.lcHostname);
209 hash = LangUtils.hashCode(hash, this.port);
210 hash = LangUtils.hashCode(hash, this.schemeName);
H A DProtocolVersion.java48 * Note that {@link #equals} and {@link #hashCode} are defined as
155 public final int hashCode() { method in class:ProtocolVersion
156 return this.protocol.hashCode() ^ (this.major * 100000) ^ this.minor;
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java281 * @see java.lang.Object#hashCode()
284 public int hashCode() { method in class:AuthScope
286 hash = LangUtils.hashCode(hash, this.host);
287 hash = LangUtils.hashCode(hash, this.port);
288 hash = LangUtils.hashCode(hash, this.realm);
289 hash = LangUtils.hashCode(hash, this.scheme);
/external/apache-http/src/org/apache/http/conn/scheme/
H A DPlainSocketFactory.java182 public int hashCode() { method in class:PlainSocketFactory
183 return PlainSocketFactory.class.hashCode();
H A DScheme.java214 public int hashCode() { method in class:Scheme
216 hash = LangUtils.hashCode(hash, this.defaultPort);
217 hash = LangUtils.hashCode(hash, this.name);
218 hash = LangUtils.hashCode(hash, this.layered);
219 hash = LangUtils.hashCode(hash, this.socketFactory);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Sequence.java233 public int hashCode() method in class:ASN1Sequence
236 int hashCode = size();
241 hashCode *= 17;
243 hashCode ^= o.hashCode();
246 return hashCode;
H A DASN1TaggedObject.java129 public int hashCode() method in class:ASN1TaggedObject
134 // object may end up with a different hashCode due to implicit
136 // it seems the only correct method for both equals and hashCode is to
140 code ^= obj.hashCode();

Completed in 1149 milliseconds

1234567891011>>