Searched defs:hashCode (Results 401 - 425 of 794) sorted by relevance

<<11121314151617181920>>

/external/guava/guava/src/com/google/common/collect/
H A DMultiset.java273 * ((element == null) ? 0 : element.hashCode()) ^ count}</pre>
276 int hashCode(); method in interface:Multiset.Entry
304 * ((element == null) ? 0 : element.hashCode()) ^ count(element)}</pre>
310 int hashCode(); method in interface:Multiset
H A DRange.java386 * {@link Set#hashCode} or {@link Collections#frequency}) can cause major
476 @Override public int hashCode() { method in class:Range
477 return lowerBound.hashCode() * 31 + upperBound.hashCode();
H A DSingletonImmutableTable.java134 @Override public int hashCode() { method in class:SingletonImmutableTable
135 return Objects.hashCode(singleRowKey, singleColumnKey, singleValue);
H A DTable.java123 int hashCode(); method in interface:Table
290 * Objects#hashCode}{@code (e.getRowKey(), e.getColumnKey(), e.getValue())}.
293 int hashCode(); method in interface:Table.Cell
/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/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java207 public int hashCode() { method in class:UnsignedInteger
H A DUnsignedLong.java213 public int hashCode() { method in class:UnsignedLong
214 return Longs.hashCode(value);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java105 @Override public int hashCode() { method in class:EmptyContiguousSet
H A DRegularContiguousSet.java165 @Override public int hashCode() { method in class:RegularContiguousSet
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSetTest.java57 @Override public int hashCode() { method in class:ForwardingSetTest.StandardImplForwardingSet
H A DForwardingSortedMapTest.java76 @Override public int hashCode() { method in class:ForwardingSortedMapTest.StandardImplForwardingSortedMap
H A DForwardingSortedSetTest.java56 @Override public int hashCode() { method in class:ForwardingSortedSetTest.StandardImplForwardingSortedSet
H A DSynchronizedMultimapTest.java62 @Override public int hashCode() { method in class:SynchronizedMultimapTest.TestMultimap
64 return super.hashCode();
H A DSynchronizedSetTest.java76 @Override public int hashCode() { method in class:SynchronizedSetTest.TestSet
78 return super.hashCode();
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashingTest.java51 private void checkConsistentHashCorrectness(long hashCode) { argument
54 int b = Hashing.consistentHash(hashCode, shards);
102 public void checkSameResult(HashCode hashCode, long equivLong) { argument
103 assertEquals(Hashing.consistentHash(equivLong, 5555), Hashing.consistentHash(hashCode, 5555));
/external/icu/icu4c/source/common/
H A Drbbidata.cpp170 int32_t RBBIDataWrapper::hashCode() { function in class:RBBIDataWrapper
/external/icu/icu4c/source/i18n/
H A Dcollationsettings.cpp66 CollationSettings::hashCode() const { function in class:CollationSettings
H A Dsortkey.cpp22 // 7/31/98 erm hashCode: minimum inc should be 2 not 1,
260 CollationKey::hashCode() const function in class:CollationKey
263 // We cache the hashCode; when it becomes invalid, due to any change to the
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java122 * and <code>hashCode()</code> are directly supplied by the
137 else if ("hashCode".equals(name))
138 return new Integer(hashCode());
183 public int hashCode() { method in class:AnnotationImpl
185 int hashCode = 0;
216 valueHashCode = value.hashCode();
218 hashCode += 127 * name.hashCode() ^ valueHashCode;
221 cachedHashCode = hashCode;
282 * Calculates the hashCode o
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DListenerStatus.java262 * @see java.lang.Object#hashCode()
265 public int hashCode() { method in class:ListenerStatus
266 return this.getListener().hashCode();
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DValue.java237 public int hashCode() { method in class:Value
238 return toString().hashCode();
/external/junit/src/org/junit/runner/
H A DDescription.java148 public int hashCode() { method in class:Description
149 return getDisplayName().hashCode();
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastClass.java135 public int hashCode() { method in class:FastClass
136 return type.hashCode();
H A DMethodDelegate.java140 public int hashCode() { method in class:MethodDelegate
141 return target.hashCode() ^ eqMethod.hashCode();
/external/mockito/src/org/mockito/internal/invocation/
H A DInvocationImpl.java88 public int hashCode() { method in class:InvocationImpl

Completed in 293 milliseconds

<<11121314151617181920>>