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

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java46 public int hashCode() method in class:DHValidationParameters
48 return counter ^ Arrays.hashCode(seed);
H A DDSAValidationParameters.java43 public int hashCode() method in class:DSAValidationParameters
45 return counter ^ Arrays.hashCode(seed);
H A DDSAParameters.java70 public int hashCode() method in class:DSAParameters
72 return getP().hashCode() ^ getQ().hashCode() ^ getG().hashCode();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DBaseComparable.java33 @Override public int hashCode() { // delegate to 's' method in class:BaseComparable
34 return s.hashCode();
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java162 public int hashCode() method in class:FullFrame
164 int hashCode = super.hashCode();
168 hashCode ^= variables[index].hashCode();
173 hashCode ^= stack[index].hashCode();
176 return hashCode;
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java22 * type's behavior for {@code equals()}, {@code hashCode()},
81 * @return hashCode of the encapsulated object
84 public int hashCode() { method in class:AbstractAttr
85 return value.hashCode();
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationItem.java36 private int hashCode = 0; field in class:AnnotationItem
137 hashCode = visibility.value;
138 hashCode = hashCode * 31 + annotationValue.hashCode();
142 public int hashCode() { method in class:AnnotationItem
145 if (hashCode == 0)
147 return hashCode;
H A DAnnotationSetRefList.java37 private int hashCode = 0; field in class:AnnotationSetRefList
143 hashCode = 0;
145 hashCode = hashCode * 31 + annotationSetItem.hashCode();
150 public int hashCode() { method in class:AnnotationSetRefList
153 if (hashCode == 0)
155 return hashCode;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingMapEntry.java83 @Override public int hashCode() { method in class:ForwardingMapEntry
84 return delegate().hashCode();
105 * A sensible definition of {@link #hashCode()} in terms of {@link #getKey()}
107 * wish to override {@link #hashCode()} to forward to this implementation.
114 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
H A DImmutableEnumSet.java85 private transient int hashCode; field in class:ImmutableEnumSet
87 @Override public int hashCode() { method in class:ImmutableEnumSet
88 int result = hashCode;
89 return (result == 0) ? hashCode = delegate.hashCode() : result;
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetHashCodeTester.java28 * Tests {@link java.util.Set#hashCode}.
38 expectedHashCode += ((element == null) ? 0 : element.hashCode());
41 "A Set's hashCode() should be the sum of those of its elements.",
42 expectedHashCode, getSet().hashCode());
51 expectedHashCode += ((element == null) ? 0 : element.hashCode());
57 "A Set's hashCode() should be the sum of those of its elements (with "
59 expectedHashCode, getSet().hashCode());
64 * which call {@code hashCode()} on the set values so that set tests on
/external/mockito/src/org/mockito/internal/listeners/
H A DNotifiedMethodInvocationReport.java79 public int hashCode() { method in class:NotifiedMethodInvocationReport
80 int result = invocation != null ? invocation.hashCode() : 0;
81 result = 31 * result + (returnedValue != null ? returnedValue.hashCode() : 0);
82 result = 31 * result + (throwable != null ? throwable.hashCode() : 0);
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DRoute.java83 @Override public int hashCode() { method in class:Route
85 result = 31 * result + address.hashCode();
86 result = 31 * result + proxy.hashCode();
87 result = 31 * result + inetSocketAddress.hashCode();
H A DAddress.java129 @Override public int hashCode() { method in class:Address
131 result = 31 * result + uriHost.hashCode();
133 result = 31 * result + (sslSocketFactory != null ? sslSocketFactory.hashCode() : 0);
134 result = 31 * result + (hostnameVerifier != null ? hostnameVerifier.hashCode() : 0);
135 result = 31 * result + (authenticator != null ? authenticator.hashCode() : 0);
136 result = 31 * result + (proxy != null ? proxy.hashCode() : 0);
137 result = 31 * result + transports.hashCode();
H A DOkAuthenticator.java78 @Override public int hashCode() { method in class:OkAuthenticator.Challenge
79 return scheme.hashCode() + 31 * realm.hashCode();
115 @Override public int hashCode() { method in class:OkAuthenticator.Credential
116 return headerValue.hashCode();
/external/proguard/src/proguard/
H A DMemberSpecification.java105 public int hashCode() method in class:MemberSpecification
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSignatureTest.java47 assertThat(new Signature(new byte[] { (byte) 0xAC }).hashCode(),
48 equalTo(new Signature(new byte[] { (byte) 0xAC }).hashCode()));
49 assertThat(new Signature(new byte[] { (byte) 0xAC }).hashCode(),
50 not(equalTo(new Signature(new byte[] { (byte) 0xDE }).hashCode())));
/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/guava/guava/src/com/google/common/hash/
H A DHashing.java150 * If {@code hashCode} has enough bits, returns {@code hashCode.asLong()}, otherwise
151 * returns a {@code long} value with {@code hashCode.asInt()} as the least-significant
154 public static long padToLong(HashCode hashCode) { argument
155 return (hashCode.bits() < 64) ? UnsignedInts.toLong(hashCode.asInt()) : hashCode.asLong();
159 * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform
171 public static int consistentHash(HashCode hashCode, int buckets) { argument
172 return consistentHash(padToLong(hashCode), bucket
[all...]
/external/apache-http/src/org/apache/http/conn/scheme/
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/smack/asmack-master/static-src/custom/de/measite/smack/
H A DAndroidDebugger.java59 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
71 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
91 connection.hashCode() +
102 connection.hashCode() +
110 connection.hashCode() +
118 connection.hashCode() +
125 connection.hashCode() +
131 connection.hashCode() +
156 "User logged (" + connection.hashCode() + "): "
/external/smack/src/de/measite/smack/
H A DAndroidDebugger.java59 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
71 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
91 connection.hashCode() +
102 connection.hashCode() +
110 connection.hashCode() +
118 connection.hashCode() +
125 connection.hashCode() +
131 connection.hashCode() +
156 "User logged (" + connection.hashCode() + "): "
/external/smack/src/org/jivesoftware/smack/debugger/
H A DConsoleDebugger.java73 dateFormatter.format(new Date()) + " RCV (" + connection.hashCode() +
85 dateFormatter.format(new Date()) + " SENT (" + connection.hashCode() +
105 connection.hashCode() +
116 connection.hashCode() +
124 connection.hashCode() +
132 connection.hashCode() +
139 connection.hashCode() +
145 connection.hashCode() +
170 "User logged (" + connection.hashCode() + "): "

Completed in 735 milliseconds

1234567891011>>