Searched
defs:hashCode (Results
801 -
825 of
5552) sorted by null
<<31323334353637383940>>
| /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
| ParameterizedTypeName.java | 82 public int hashCode() { 83 return Objects.hashCode(type, parameters);
|
| TypeVariableName.java | 86 public int hashCode() { 87 return Objects.hashCode(name, extendsBounds);
|
| /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/ |
| BatchRunConfiguration.java | 89 public int hashCode() { 90 return getId().hashCode();
|
| /external/desugar/java/com/google/devtools/common/options/ |
| OptionPriority.java | 89 public int hashCode() {
|
| OptionsBase.java | 126 public final int hashCode() { 127 return this.getClass().hashCode() + asMap().hashCode();
|
| /external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
| MethodId.java | 118 public int hashCode() { 120 result = 31 * result + declaringType.hashCode(); 121 result = 31 * result + name.hashCode(); 122 result = 31 * result + parameters.hashCode(); 123 result = 31 * result + returnType.hashCode();
|
| /external/easymock/src/org/easymock/internal/ |
| ExpectedInvocation.java | 84 public int hashCode() {
85 throw new UnsupportedOperationException("hashCode() is not implemented");
|
| /external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
| EngineKey.java | 27 private int hashCode; 100 public int hashCode() { 101 if (hashCode == 0) { 102 hashCode = id.hashCode(); 103 hashCode = 31 * hashCode + signature.hashCode(); 104 hashCode = 31 * hashCode + width [all...] |
| /external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/ |
| FifoPriorityThreadPoolExecutor.java | 86 public int hashCode() {
|
| /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/ |
| PreFillType.java | 81 public int hashCode() { 84 result = 31 * result + config.hashCode();
|
| /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/ |
| EncodingOption.java | 101 public int hashCode() { 103 result = result * 31 + (mType != null ? mType.hashCode() : 0);
|
| /external/guava/guava/src/com/google/common/base/ |
| Objects.java | 65 * calling {@link Arrays#hashCode(Object[])}. Note that array arguments to 69 * <p>This is useful for implementing {@link Object#hashCode()}. For example, 73 * public int hashCode() { 74 * return Objects.hashCode(getX(), getY(), getZ()); 83 public static int hashCode(@Nullable Object... objects) { 84 return Arrays.hashCode(objects);
|
| /external/guava/guava/src/com/google/common/cache/ |
| CacheStats.java | 247 public int hashCode() { 248 return Objects.hashCode(hitCount, missCount, loadSuccessCount, loadExceptionCount,
|
| RemovalNotification.java | 89 @Override public int hashCode() { 92 return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
|
| /external/guava/guava/src/com/google/common/collect/ |
| AbstractRangeSet.java | 94 public final int hashCode() { 95 return asRanges().hashCode();
|
| EmptyImmutableSet.java | 80 @Override public final int hashCode() {
|
| EmptyImmutableSortedSet.java | 88 @Override public int hashCode() {
|
| ForwardingList.java | 118 @Override public int hashCode() { 119 return delegate().hashCode(); 230 * A sensible definition of {@link #hashCode} in terms of {@link #iterator}. 232 * #hashCode} to forward to this implementation.
|
| ForwardingMultimap.java | 140 @Override public int hashCode() { 141 return delegate().hashCode();
|
| ForwardingTable.java | 141 @Override public int hashCode() { 142 return delegate().hashCode();
|
| ImmutableEnumSet.java | 88 private transient int hashCode; 90 @Override public int hashCode() { 91 int result = hashCode; 92 return (result == 0) ? hashCode = delegate.hashCode() : result;
|
| ImmutableSet.java | 53 * HashSet} for objects with very fast {@link Object#hashCode} implementations 192 int hashCode = 0; 196 int hash = element.hashCode(); 204 hashCode += hash; 216 return new SingletonImmutableSet<E>(element, hashCode); 225 return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask); 385 /** Returns {@code true} if the {@code hashCode()} method runs quickly. */ 396 && hashCode() != object.hashCode()) { 402 @Override public int hashCode() { [all...] |
| Multimap.java | 111 * may not have the same {@code hashCode}. The recommended subinterfaces 384 * mappings will have the same {@code hashCode}, but the {@code hashCode} 389 int hashCode();
|
| Multiset.java | 277 * ((element == null) ? 0 : element.hashCode()) ^ count}</pre> 280 int hashCode(); 308 * ((element == null) ? 0 : element.hashCode()) ^ count(element)}</pre> 314 int hashCode();
|
| RangeSet.java | 194 * Returns {@code asRanges().hashCode()}. 197 int hashCode();
|
Completed in 1048 milliseconds
<<31323334353637383940>>