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

1234567891011>>

/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java166 @Override public int hashCode() { method in class:Address
168 result = 31 * result + (proxy != null ? proxy.hashCode() : 0);
169 result = 31 * result + uriHost.hashCode();
171 result = 31 * result + (sslSocketFactory != null ? sslSocketFactory.hashCode() : 0);
172 result = 31 * result + (hostnameVerifier != null ? hostnameVerifier.hashCode() : 0);
173 result = 31 * result + (certificatePinner != null ? certificatePinner.hashCode() : 0);
174 result = 31 * result + authenticator.hashCode();
175 result = 31 * result + protocols.hashCode();
176 result = 31 * result + connectionSpecs.hashCode();
177 result = 31 * result + proxySelector.hashCode();
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DEuclideanIntegerPoint.java94 public int hashCode() { method in class:EuclideanIntegerPoint
95 int hashCode = 0;
97 hashCode += i.hashCode() * 13 + 7;
99 return hashCode;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DScheme.java219 public int hashCode() { method in class:Scheme
221 hash = LangUtils.hashCode(hash, this.defaultPort);
222 hash = LangUtils.hashCode(hash, this.name);
223 hash = LangUtils.hashCode(hash, this.layered);
224 hash = LangUtils.hashCode(hash, this.socketFactory);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableEnumSet.java88 private transient int hashCode; field in class:ImmutableEnumSet
90 @Override public int hashCode() { method in class:ImmutableEnumSet
91 int result = hashCode;
92 return (result == 0) ? hashCode = delegate.hashCode() : result;
H A DComparatorOrdering.java52 @Override public int hashCode() { method in class:ComparatorOrdering
53 return comparator.hashCode();
H A DForwardingSet.java62 @Override public int hashCode() { method in class:ForwardingSet
63 return delegate().hashCode();
91 * A sensible definition of {@link #hashCode} in terms of {@link #iterator}.
H A DMapDifference.java81 int hashCode(); method in interface:MapDifference
109 * {@code Arrays.asList(leftValue(), rightValue()).hashCode()}.
111 @Override int hashCode(); method in interface:MapDifference.ValueDifference
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultisetReadsTester.java70 0, getMultiset().entrySet().hashCode());
76 1 ^ samples.e0.hashCode(), getMultiset().entrySet().hashCode());
103 0, getMultiset().hashCode());
109 1 ^ samples.e0.hashCode(), getMultiset().hashCode());
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashCodeTest.java92 HashCode hashCode = HashCode.fromBytes(bytes);
96 assertEquals(expectedInt, hashCode.asInt());
97 assertEquals(expectedToString, hashCode.toString());
101 assertEquals(expectedInt, hashCode.asInt());
102 assertEquals(expectedToString, hashCode.toString());
107 HashCode hashCode = HashCode.fromBytesNoCopy(bytes);
109 assertEquals(0x0000abcd, hashCode.asInt());
110 assertEquals("cdab0000", hashCode.toString());
114 assertEquals(0x0000ab00, hashCode.asInt());
115 assertEquals("00ab0000", hashCode
370 assertReadableBytes(HashCode hashCode) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DTypeListPool.java89 public int hashCode() { method in class:TypeListPool.Key
90 int hashCode = 1;
92 hashCode = hashCode*31 + type.toString().hashCode();
94 return hashCode;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DPredicateLabel.java53 public int hashCode() { method in class:PredicateLabel
54 return semanticContext.hashCode();
H A DTransition.java66 public int hashCode() { method in class:Transition
67 return label.hashCode() + target.stateNumber;
/external/apache-http/src/org/apache/http/auth/
H A DBasicUserPrincipal.java66 public int hashCode() { method in class:BasicUserPrincipal
68 hash = LangUtils.hashCode(hash, this.username);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java33 public int hashCode() method in class:PemHeader
57 return s.hashCode();
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstAnnotation.java55 public int hashCode() { method in class:CstAnnotation
56 return annotation.hashCode();
/external/glide/library/src/main/java/com/bumptech/glide/signature/
H A DStringSignature.java36 public int hashCode() { method in class:StringSignature
37 return signature.hashCode();
/external/guava/guava/src/com/google/common/reflect/
H A DTypeParameter.java52 @Override public final int hashCode() { method in class:TypeParameter
53 return typeVariable.hashCode();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCaseInsensitiveString.java14 * hashCode() methods ignore case.
75 * Returns the hashCode of this object
79 public int hashCode() { method in class:CaseInsensitiveString
83 hash = folded.hashCode();
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DCollationKeyICU.java59 public int hashCode() { method in class:CollationKeyICU
60 return fIcuCollKey.hashCode();
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DPermissionsTest.groovy55 assert new Permissions('rwxrwxrwx').hashCode() == Permissions.DEFAULT.hashCode()
56 assert new Permissions('---------').hashCode() == Permissions.NONE.hashCode()
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DPermissionsTest.groovy55 assert new Permissions('rwxrwxrwx').hashCode() == Permissions.DEFAULT.hashCode()
56 assert new Permissions('---------').hashCode() == Permissions.NONE.hashCode()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DPermissionsTest.groovy55 assert new Permissions('rwxrwxrwx').hashCode() == Permissions.DEFAULT.hashCode()
56 assert new Permissions('---------').hashCode() == Permissions.NONE.hashCode()

Completed in 2009 milliseconds

1234567891011>>