Searched defs:hashCode (Results 201 - 225 of 671) sorted by relevance

1234567891011>>

/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/guava/guava/src/com/google/common/base/
H A DObjects.java56 * calling {@link Arrays#hashCode(Object[])}.
58 * <p>This is useful for implementing {@link Object#hashCode()}. For example,
62 * public int hashCode() {
63 * return Objects.hashCode(getX(), getY(), getZ());
69 public static int hashCode(@Nullable Object... objects) { method in class:Objects
70 return Arrays.hashCode(objects);
/external/guava/guava/src/com/google/common/cache/
H A DCacheStats.java239 public int hashCode() { method in class:CacheStats
240 return Objects.hashCode(hitCount, missCount, loadSuccessCount, loadExceptionCount,
/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableMap.java82 @Override public int hashCode() { method in class:EmptyImmutableMap
H A DEmptyImmutableSet.java83 @Override public final int hashCode() { method in class:EmptyImmutableSet
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;
H A DImmutableSortedAsList.java98 @Override public int hashCode() { method in class:ImmutableSortedAsList
99 return backingList.hashCode();
H A DInterners.java127 @Override public int hashCode() { method in class:Interners.InternerFunction
128 return interner.hashCode();
H A DRegularImmutableList.java167 @Override public int hashCode() { method in class:RegularImmutableList
170 int hashCode = 1;
172 hashCode = 31 * hashCode + array[i].hashCode();
174 return hashCode;
H A DReverseOrdering.java80 @Override public int hashCode() { method in class:ReverseOrdering
81 return -forwardOrder.hashCode();
H A DSingletonImmutableList.java131 @Override public int hashCode() { method in class:SingletonImmutableList
134 return 31 + element.hashCode();
H A DSingletonImmutableMap.java149 @Override public int hashCode() { method in class:SingletonImmutableMap
150 return singleKey.hashCode() ^ singleValue.hashCode();
H A DTransformedImmutableList.java109 @Override public int hashCode() { method in class:TransformedImmutableList
110 int hashCode = 1;
112 hashCode = 31 * hashCode + (e == null ? 0 : e.hashCode());
114 return hashCode;
/external/guava/guava/src/com/google/common/net/
H A DHostAndPort.java242 public int hashCode() { method in class:HostAndPort
243 return Objects.hashCode(host, port, hasBracketlessColons);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSet.java177 @Override public int hashCode() { method in class:ImmutableSet
178 return delegate.hashCode();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSampleElements.java106 @Override public int hashCode() { method in class:SampleElements.Collider
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstTesting.java60 public int hashCode() { method in class:BstTesting.SimpleNode
61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT));
/external/guava/guava-tests/test/com/google/common/testing/
H A DSerializableTesterTest.java105 public int hashCode() { method in class:SerializableTesterTest.ObjectWhichIsEqualButChangesClass
121 public int hashCode() { method in class:SerializableTesterTest.ObjectWhichIsEqualButChangesClass.OtherForm
/external/javassist/src/test/test/javassist/proxy/
H A DProxySerializationTest.java100 public int hashCode() method in class:ProxySerializationTest.TestFilter
102 return TestFilter.class.hashCode();
122 public int hashCode() method in class:ProxySerializationTest.TestHandler
124 return TestHandler.class.hashCode();
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DPointer.java159 public int hashCode() { method in class:Pointer
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetKey.java183 public int hashCode(){ method in class:AssetKey
184 return name.hashCode();
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderKey.java86 public int hashCode() { method in class:ShaderKey
88 hash = 41 * hash + name.hashCode();
89 hash = 41 * hash + fragName.hashCode();
90 hash = 41 * hash + (defines != null ? defines.getCompiled().hashCode() : 0);
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture2D.java198 public int hashCode() { method in class:Texture2D
199 int hash = super.hashCode();
200 hash = 79 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
201 hash = 79 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
H A DTextureCubeMap.java181 public int hashCode() { method in class:TextureCubeMap
182 int hash = super.hashCode();
183 hash = 53 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
184 hash = 53 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
185 hash = 53 * hash + (this.wrapR != null ? this.wrapR.hashCode() : 0);
/external/jmonkeyengine/engine/src/test/jme3test/asset/
H A DTestAssetCache.java86 public int hashCode(){ method in class:TestAssetCache.SmartKey
115 public int hashCode(){ method in class:TestAssetCache.DumbKey

Completed in 3835 milliseconds

1234567891011>>