Searched refs:hashCode (Results 226 - 250 of 1269) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/preverification/
H A DSameOneFrame.java105 public int hashCode() method in class:SameOneFrame
107 return super.hashCode() ^ stackItem.hashCode();
/external/proguard/src/proguard/evaluation/value/
H A DArrayReferenceValue.java154 public int hashCode() method in class:ArrayReferenceValue
156 return super.hashCode() ^
157 arrayLength.hashCode();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPair.java29 public int hashCode() { method in class:ShadowPair
30 return realPair.first.hashCode() + realPair.second.hashCode();
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java108 @Override public int hashCode() { method in class:MethodId
110 result = 31 * result + declaringType.hashCode();
111 result = 31 * result + name.hashCode();
112 result = 31 * result + parameters.hashCode();
113 result = 31 * result + returnType.hashCode();
/external/proguard/src/proguard/
H A DClassSpecification.java234 public int hashCode() method in class:ClassSpecification
237 // (comments == null ? 0 : comments.hashCode() ) ^
240 (annotationType == null ? 0 : annotationType.hashCode() ) ^
241 (className == null ? 0 : className.hashCode() ) ^
242 (extendsAnnotationType == null ? 0 : extendsAnnotationType.hashCode()) ^
243 (extendsClassName == null ? 0 : extendsClassName.hashCode() ) ^
244 (fieldSpecifications == null ? 0 : fieldSpecifications.hashCode() ) ^
245 (methodSpecifications == null ? 0 : methodSpecifications.hashCode() );
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java330 @Override public int hashCode() { method in class:Predicates.NotPredicate
331 return ~predicate.hashCode();
365 @Override public int hashCode() { method in class:Predicates.AndPredicate
367 return components.hashCode() + 0x12472c2c;
399 @Override public int hashCode() { method in class:Predicates.OrPredicate
401 return components.hashCode() + 0x053c91cf;
428 @Override public int hashCode() { method in class:Predicates.IsEqualToPredicate
429 return target.hashCode();
457 @Override public int hashCode() { method in class:Predicates.InstanceOfPredicate
458 return clazz.hashCode();
486 @Override public int hashCode() { method in class:Predicates.AssignableFromPredicate
529 @Override public int hashCode() { method in class:Predicates.InPredicate
563 @Override public int hashCode() { method in class:Predicates.CompositionPredicate
589 @Override public int hashCode() { method in class:Predicates.ContainsPatternPredicate
[all...]
H A DFunctions.java133 @Override public int hashCode() { method in class:Functions.FunctionForMapNoDefault
134 return map.hashCode();
181 @Override public int hashCode() { method in class:Functions.ForMapWithDefault
182 return Objects.hashCode(map, defaultValue);
227 @Override public int hashCode() { method in class:Functions.FunctionComposition
228 return f.hashCode() ^ g.hashCode();
269 @Override public int hashCode() { method in class:Functions.PredicateFunction
270 return predicate.hashCode();
310 @Override public int hashCode() { method in class:Functions.ConstantFunction
353 @Override public int hashCode() { method in class:Functions.SupplierFunction
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableBiMap.java43 private final transient int hashCode; field in class:RegularImmutableBiMap
61 int hashCode = 0;
69 int keyHash = key.hashCode();
70 int valueHash = value.hashCode();
91 hashCode += keyHash ^ valueHash;
97 this.hashCode = hashCode;
110 int hashCode = 0;
118 int keyHash = key.hashCode();
119 int valueHash = value.hashCode();
294 public int hashCode() { method in class:RegularImmutableBiMap.Inverse.InverseEntrySet
[all...]
/external/proguard/src/proguard/util/
H A DArrayUtil.java151 public static int hashCode(byte[] array, int size) method in class:ArrayUtil
153 int hashCode = 0;
157 hashCode ^= array[index];
160 return hashCode;
170 public static int hashCode(short[] array, int size) method in class:ArrayUtil
172 int hashCode = 0;
176 hashCode ^= array[index];
179 return hashCode;
189 public static int hashCode(int[] array, int size) method in class:ArrayUtil
191 int hashCode
208 public static int hashCode(Object[] array, int size) method in class:ArrayUtil
[all...]
/external/guava/guava/src/com/google/common/hash/
H A DHashing.java293 * If {@code hashCode} has enough bits, returns {@code hashCode.asLong()}, otherwise
294 * returns a {@code long} value with {@code hashCode.asInt()} as the least-significant
301 public static long padToLong(HashCode hashCode) { argument
302 return hashCode.padToLong();
306 * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform
318 public static int consistentHash(HashCode hashCode, int buckets) { argument
319 return consistentHash(hashCode.padToLong(), buckets);
367 for (HashCode hashCode : hashCodes) {
368 byte[] nextBytes = hashCode
459 public int hashCode() { method in class:Hashing.ConcatenatedHashFunction
[all...]
H A DFunnels.java122 @Override public int hashCode() { method in class:Funnels.StringCharsetFunnel
123 return StringCharsetFunnel.class.hashCode() ^ charset.hashCode();
201 @Override public int hashCode() { method in class:Funnels.SequentialFunnel
202 return SequentialFunnel.class.hashCode() ^ elementFunnel.hashCode();
/external/guava/guava-tests/test/com/google/common/net/
H A DHostAndPortTest.java201 assertEquals(hp1.hashCode(), hp1.hashCode());
202 assertEquals(hp1.hashCode(), hp2.hashCode());
203 assertFalse(hp1.hashCode() == hp3.hashCode());
204 assertFalse(hp3.hashCode() == hp4.hashCode());
205 assertEquals(hp4.hashCode(), hp5.hashCode());
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java267 @Override public int hashCode() { method in class:Predicates.NotPredicate
268 return ~predicate.hashCode();
302 @Override public int hashCode() { method in class:Predicates.AndPredicate
304 return components.hashCode() + 0x12472c2c;
336 @Override public int hashCode() { method in class:Predicates.OrPredicate
338 return components.hashCode() + 0x053c91cf;
365 @Override public int hashCode() { method in class:Predicates.IsEqualToPredicate
366 return target.hashCode();
408 @Override public int hashCode() { method in class:Predicates.InPredicate
409 return target.hashCode();
442 @Override public int hashCode() { method in class:Predicates.CompositionPredicate
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Sequence.java284 public int hashCode() method in class:ASN1Sequence
287 int hashCode = size();
292 hashCode *= 17;
294 hashCode ^= o.hashCode();
297 return hashCode;
/external/jetty/src/java/org/eclipse/jetty/server/session/
H A DAbstractSessionIdManager.java143 ?(hashCode()^Runtime.getRuntime().freeMemory()^_random.nextInt()^(((long)request.hashCode())<<32))
159 _random.setSeed(_random.nextLong()^System.currentTimeMillis()^request.hashCode()^Runtime.getRuntime().freeMemory());
164 ?(hashCode()^Runtime.getRuntime().freeMemory()^_random.nextInt()^(((long)request.hashCode())<<32))
216 _random.setSeed(_random.nextLong()^System.currentTimeMillis()^hashCode()^Runtime.getRuntime().freeMemory());
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DInternal.java233 * Helper method for implementing {@link MessageLite#hashCode()} for longs.
234 * @see Long#hashCode()
241 * Helper method for implementing {@link MessageLite#hashCode()} for
243 * @see Boolean#hashCode()
250 * Helper method for implementing {@link MessageLite#hashCode()} for enums.
252 * This is needed because {@link java.lang.Enum#hashCode()} is final, but we
261 * Helper method for implementing {@link MessageLite#hashCode()} for
286 * Helper method for implementing {@link MessageLite#hashCode()} for bytes field.
288 public static int hashCode(List<byte[]> list) { method in class:Internal
291 hash = 31 * hash + hashCode(byte
299 public static int hashCode(byte[] bytes) { method in class:Internal
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java89 @Override public int hashCode() { method in class:RemovalNotification
92 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DMultisetIteratorBenchmark.java68 sum += value.hashCode();
78 sum += value.hashCode();
88 sum += value.hashCode();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
H A DBaseLocationBox.java98 public int hashCode() { method in class:BaseLocationBox
99 int result = baseLocation != null ? baseLocation.hashCode() : 0;
100 result = 31 * result + (purchaseLocation != null ? purchaseLocation.hashCode() : 0);
/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-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DLinearConstraint.java206 public int hashCode() { method in class:LinearConstraint
207 return relationship.hashCode() ^
208 Double.valueOf(value).hashCode() ^
209 coefficients.hashCode();
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateTest.java62 * Test for <code>hashCode()</code> method<br>
69 assertTrue(c1.hashCode() == c2.hashCode());
73 * Test for <code>hashCode()</code> method<br>
80 assertTrue((c1.hashCode() == c2.hashCode()) && c1.equals(c2));
/external/apache-http/src/org/apache/http/
H A DHttpHost.java63 /** The lowercase host, for {@link #equals} and {@link #hashCode}. */
209 * @see java.lang.Object#hashCode()
211 public int hashCode() { method in class:HttpHost
213 hash = LangUtils.hashCode(hash, this.lcHostname);
214 hash = LangUtils.hashCode(hash, this.port);
215 hash = LangUtils.hashCode(hash, this.schemeName);

Completed in 984 milliseconds

1234567891011>>