Searched refs:hashCode (Results 276 - 300 of 916) sorted by relevance

<<11121314151617181920>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DAbstractTrackEncryptionBox.java87 public int hashCode() { method in class:AbstractTrackEncryptionBox
90 result = 31 * result + (default_KID != null ? Arrays.hashCode(default_KID) : 0);
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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DCencSampleEncryptionInformationGroupEntry.java119 public int hashCode() { method in class:CencSampleEncryptionInformationGroupEntry
122 result = 31 * result + (kid != null ? Arrays.hashCode(kid) : 0);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallIdentifier.java126 public int hashCode() { method in class:CallIdentifier
130 return this.localId.hashCode();
/external/proguard/src/proguard/evaluation/value/
H A DUnknownIntegerValue.java206 public int hashCode() method in class:UnknownIntegerValue
208 return this.getClass().hashCode();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSparseBooleanArray.java86 public int hashCode() { method in class:ShadowSparseBooleanArray
87 return sparseArray.hashCode();
/external/smack/src/org/jivesoftware/smack/packet/
H A DPacket.java498 public int hashCode() { method in class:Packet
500 result = (xmlns != null ? xmlns.hashCode() : 0);
501 result = 31 * result + (packetID != null ? packetID.hashCode() : 0);
502 result = 31 * result + (to != null ? to.hashCode() : 0);
503 result = 31 * result + (from != null ? from.hashCode() : 0);
504 result = 31 * result + packetExtensions.hashCode();
505 result = 31 * result + properties.hashCode();
506 result = 31 * result + (error != null ? error.hashCode() : 0);
/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.java262 public int hashCode() method in class:ASN1Set
265 int hashCode = size();
270 hashCode *= 17;
272 hashCode ^= o.hashCode();
275 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/smack/src/org/apache/harmony/javax/security/auth/
H A DPrivateCredentialPermission.java235 public int hashCode() { method in class:PrivateCredentialPermission
238 hash = hash + set[i].hashCode();
240 return getCredentialClass().hashCode() + hash;
391 public int hashCode() { method in class:PrivateCredentialPermission.CredOwner
392 return principalClass.hashCode() + principalName.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/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java688 public int hashCode() { method in class:VCard
690 result = homePhones.hashCode();
691 result = 29 * result + workPhones.hashCode();
692 result = 29 * result + homeAddr.hashCode();
693 result = 29 * result + workAddr.hashCode();
694 result = 29 * result + (firstName != null ? firstName.hashCode() : 0);
695 result = 29 * result + (lastName != null ? lastName.hashCode() : 0);
696 result = 29 * result + (middleName != null ? middleName.hashCode() : 0);
697 result = 29 * result + (emailHome != null ? emailHome.hashCode() : 0);
698 result = 29 * result + (emailWork != null ? emailWork.hashCode()
[all...]
H A DDiscoverInfo.java411 public int hashCode() { method in class:DiscoverInfo.Identity
413 result = 37 * result + category.hashCode();
414 result = 37 * result + (lang == null ? 0 : lang.hashCode());
415 result = 37 * result + (type == null ? 0 : type.hashCode());
416 result = 37 * result + (name == null ? 0 : name.hashCode());
503 public int hashCode() { method in class:DiscoverInfo.Feature
504 return 37 * variable.hashCode();
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECCurve.java186 public int hashCode() method in class:ECCurve.Fp
188 return a.hashCode() ^ b.hashCode() ^ q.hashCode();
576 public int hashCode() method in class:ECCurve.F2m
578 return this.a.hashCode() ^ this.b.hashCode() ^ m ^ k1 ^ k2 ^ k3;
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractReferenceMap.java372 // The hashCode of the reference is the hashCode of the
375 int hash = ref.hashCode();
419 return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode());
445 * @param hashCode the hash code to use
450 public HashEntry<K, V> createEntry(HashEntry<K, V> next, int hashCode, K key, V value) { argument
451 return new ReferenceEntry<K, V>(this, (ReferenceEntry<K, V>) next, hashCode, key, value);
578 * @param hashCode the hash code of the key
582 public ReferenceEntry(AbstractReferenceMap<K, V> parent, ReferenceEntry<K, V> next, int hashCode, argument
669 public int hashCode() { method in class:AbstractReferenceMap.ReferenceEntry
931 public int hashCode() { method in class:AbstractReferenceMap.SoftRef
950 public int hashCode() { method in class:AbstractReferenceMap.WeakRef
[all...]
/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());
/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/chromium_org/content/public/android/java/src/org/chromium/content/common/
H A DPerfTraceEvent.java155 final long eventId = name.hashCode();
168 final long eventId = name.hashCode();
189 final long eventId = name.hashCode();
209 final long eventId = name.hashCode();
229 final long eventId = name.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;

Completed in 2277 milliseconds

<<11121314151617181920>>