Searched refs:hashCode (Results 251 - 275 of 787) sorted by relevance

<<11121314151617181920>>

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DStringIdItem.java145 public int hashCode() { method in class:StringIdItem
146 return stringDataItem.hashCode();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java40 int hashCode = 1;
44 hashCode = 31 * hashCode + elem.hashCode();
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java380 public final int hashCode() { method in class:HttpRoute
382 int hc = this.targetHost.hashCode();
385 hc ^= localAddress.hashCode();
388 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode();
394 hc ^= this.tunnelled.hashCode();
395 hc ^= this.layered.hashCode();
H A DRouteTracker.java371 public final int hashCode() { method in class:RouteTracker
373 int hc = this.targetHost.hashCode();
376 hc ^= localAddress.hashCode();
380 hc ^= proxyChain[i].hashCode();
388 hc ^= this.tunnelled.hashCode();
389 hc ^= this.layered.hashCode();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Set.java266 public int hashCode() method in class:ASN1Set
269 int hashCode = size();
274 hashCode *= 17;
276 hashCode ^= o.hashCode();
279 return hashCode;
/external/guava/guava-tests/test/com/google/common/collect/
H A DFauxveridesTest.java192 @Override public int hashCode() { method in class:FauxveridesTest.MethodSignature
193 return Objects.hashCode(name, parameterTypes, typeSignature);
229 @Override public int hashCode() { method in class:FauxveridesTest.TypeSignature
230 return parameterSignatures.hashCode();
262 @Override public int hashCode() { method in class:FauxveridesTest.TypeParameterSignature
263 return bounds.hashCode();
/external/emma/core/java12/com/vladium/util/
H A DSoftValueMap.java104 public int hashCode () method in class:SoftValueMap
106 throw new UnsupportedOperationException ("not implemented: hashCode");
162 final int keyHashCode = key.hashCode ();
177 if ((key == entryKey) || ((keyHashCode == entryKey.hashCode ()) && key.equals (entryKey)))
193 if ((keyHashCode == entryKey.hashCode ()) && key.equals (entryKey))
233 final int keyHashCode = key.hashCode ();
246 if ((key == entryKey) || ((keyHashCode == entryKey.hashCode ()) && key.equals (entryKey)))
254 if ((keyHashCode == entryKey.hashCode ()) && key.equals (entryKey))
300 final int keyHashCode = key.hashCode ();
311 if ((IDENTITY_OPTIMIZATION && (entryKey == key)) || ((keyHashCode == entryKey.hashCode ())
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DQName.java125 m_hashCode = toString().hashCode();
179 m_hashCode = toString().hashCode();
221 m_hashCode = toString().hashCode();
312 m_hashCode = toString().hashCode();
400 m_hashCode = toString().hashCode();
479 m_hashCode = toString().hashCode();
571 public int hashCode() method in class:QName
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DAbstractSampleEncryptionBox.java252 public int hashCode() { method in class:AbstractSampleEncryptionBox.Entry.Pair
287 public int hashCode() { method in class:AbstractSampleEncryptionBox.Entry
288 int result = iv != null ? Arrays.hashCode(iv) : 0;
289 result = 31 * result + (pairs != null ? pairs.hashCode() : 0);
330 public int hashCode() { method in class:AbstractSampleEncryptionBox
333 result = 31 * result + (kid != null ? Arrays.hashCode(kid) : 0);
334 result = 31 * result + (entries != null ? entries.hashCode() : 0);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DIdentityHashMapTest.java363 assertEquals(0, hashMap.hashCode());
366 assertEquals(0, hashMap.hashCode());
367 assertTrue(0 != cloneHashMap.hashCode());
372 assertEquals(0, hashMap.hashCode());
379 assertTrue(0 != hashMap.hashCode());
380 assertEquals(0, cloneHashMap.hashCode());
385 assertEquals(0, hashMap.hashCode());
392 assertEquals(hashMap.hashCode(), cloneHashMap.hashCode());
H A DSimpleEntryTest.java95 assertEquals((e.getKey() == null ? 0 : e.getKey().hashCode())
96 ^ (e.getValue() == null ? 0 : e.getValue().hashCode()), e
97 .hashCode());
H A DSimpleImmutableEntryTest.java103 assertEquals((e.getKey() == null ? 0 : e.getKey().hashCode())
104 ^ (e.getValue() == null ? 0 : e.getValue().hashCode()), e
105 .hashCode());
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DIdentityTest.java48 new IdentityStub("testHashCode").hashCode();
62 if (Boolean.TRUE.equals(value[k+1])) assertEquals(i1.hashCode(), value[k].hashCode());
225 if (Boolean.TRUE.equals(value[k+1])) assertEquals(i.hashCode(), value[k].hashCode());
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DRuleBasedCollatorTest.java51 assertEquals(rule.hashCode(), coll.hashCode());
57 assertEquals(rule.hashCode(), coll.hashCode());
263 key.hashCode();
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTexture.java524 public int hashCode() { method in class:Texture
526 hash = 67 * hash + (this.image != null ? this.image.hashCode() : 0);
527 hash = 67 * hash + (this.minificationFilter != null ? this.minificationFilter.hashCode() : 0);
528 hash = 67 * hash + (this.magnificationFilter != null ? this.magnificationFilter.hashCode() : 0);
529 hash = 67 * hash + (this.shadowCompareMode != null ? this.shadowCompareMode.hashCode() : 0);
/external/proguard/src/proguard/evaluation/
H A DStack.java530 public int hashCode() method in class:Stack
532 int hashCode = currentSize;
539 hashCode ^= value.hashCode();
543 return hashCode;
H A DTracedStack.java305 public int hashCode() method in class:TracedStack
307 return super.hashCode() ^
308 producerStack.hashCode();
/external/guava/guava/src/com/google/common/base/
H A DEquivalence.java156 * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an
217 @Override public int hashCode() { method in class:Equivalence.Wrapper
286 @Override public int hashCode() { method in class:Equivalence.EquivalentToPredicate
287 return Objects.hashCode(equivalence, target);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingMultiset.java89 @Override public int hashCode() { method in class:ForwardingMultiset
90 return delegate().hashCode();
292 * A sensible definition of {@link #hashCode} as {@code entrySet().hashCode()}
294 * #hashCode} to forward to this implementation.
299 return entrySet().hashCode();
H A DSingletonImmutableMap.java149 @Override public int hashCode() { method in class:SingletonImmutableMap
150 return singleKey.hashCode() ^ singleValue.hashCode();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DRateShareEntry.java148 public int hashCode() { method in class:RateShareEntry.Entry
189 public int hashCode() { method in class:RateShareEntry
192 result = 31 * result + (entries != null ? entries.hashCode() : 0);
H A DSampleGroupDescriptionBox.java185 public int hashCode() { method in class:SampleGroupDescriptionBox
186 int result = groupingType != null ? groupingType.hashCode() : 0;
188 result = 31 * result + (groupEntries != null ? groupEntries.hashCode() : 0);
/external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/
H A DChannelBindingTest.java256 assertEquals(addr1.hashCode(), cb.hashCode());
262 assertEquals(addr.hashCode(), cb.hashCode());
267 assertEquals(33, cb.hashCode());
273 assertEquals(312, cb.hashCode());
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java387 public int hashCode() { method in class:BlenderKey
389 int result = super.hashCode();
390 result = prime * result + (assetRootPath == null ? 0 : assetRootPath.hashCode());
391 result = prime * result + (defaultMaterial == null ? 0 : defaultMaterial.hashCode());
392 result = prime * result + (faceCullMode == null ? 0 : faceCullMode.hashCode());
401 result = prime * result + (usedWorld == null ? 0 : usedWorld.hashCode());
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC2ParameterSpecTest.java182 * hashCode() method testing. Tests that for equal objects hash codes
193 ps1.hashCode() == ps2.hashCode());

Completed in 9705 milliseconds

<<11121314151617181920>>