Searched refs:hashCode (Results 76 - 100 of 787) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java24 public int hashCode() method in class:PemHeader
48 return s.hashCode();
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstAnnotation.java55 public int hashCode() { method in class:CstAnnotation
56 return annotation.hashCode();
H A DCstMemberRef.java62 public final int hashCode() { method in class:CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
/external/guava/guava/src/com/google/common/collect/
H A DForwardingSet.java60 @Override public int hashCode() { method in class:ForwardingSet
61 return delegate().hashCode();
76 * A sensible definition of {@link #hashCode} in terms of {@link #iterator}.
H A DMapDifference.java81 int hashCode(); method in interface:MapDifference
109 * {@code Arrays.asList(leftValue(), rightValue()).hashCode()}.
111 @Override int hashCode(); method in interface:MapDifference.ValueDifference
H A DSingletonImmutableSet.java38 // call to hashCode().
50 SingletonImmutableSet(E element, int hashCode) { argument
53 cachedHashCode = hashCode;
104 @Override public final int hashCode() { method in class:SingletonImmutableSet
108 cachedHashCode = code = element.hashCode();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRoute.java75 public int hashCode() { method in class:Route
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DLessZeroFrame.java93 public int hashCode() method in class:LessZeroFrame
95 return super.hashCode() ^ choppedVariablesCount;
H A DStackMapFrame.java106 public int hashCode() method in class:StackMapFrame
108 return getClass().hashCode() ^
H A DVerificationType.java99 public int hashCode() method in class:VerificationType
101 return this.getClass().hashCode();
/external/proguard/src/proguard/evaluation/value/
H A DUnknownDoubleValue.java115 public int hashCode() method in class:UnknownDoubleValue
117 return this.getClass().hashCode();
H A DUnknownFloatValue.java115 public int hashCode() method in class:UnknownFloatValue
117 return this.getClass().hashCode();
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationSetItem.java39 private int hashCode = 0; field in class:AnnotationSetItem
163 hashCode = 0;
165 hashCode = hashCode * 31 + annotationItem.hashCode();
170 public int hashCode() { method in class:AnnotationSetItem
173 if (hashCode == 0)
175 return hashCode;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertPathTest.java56 * Test for <code>hashCode()</code> method<br>
63 assertTrue(cp1.hashCode() == cp2.hashCode());
67 * Test for <code>hashCode()</code> method<br>
73 assertTrue((cp1.hashCode() == cp2.hashCode()) && cp1.equals(cp2));
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyPermission.java45 public int hashCode() { method in class:MyPermission
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapHashCodeTester.java30 * Tests {@link java.util.Map#hashCode}.
44 "A Map's hashCode() should be the sum of those of its entries.",
45 expectedHashCode, getMap().hashCode());
74 "A Map's hashCode() should be the sum of those of its entries (where "
76 expectedHashCode, getMap().hashCode());
80 return (e.getKey() == null ? 0 : e.getKey().hashCode())
81 ^ (e.getValue() == null ? 0 : e.getValue().hashCode());
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEqualsTester.java34 * Tester for equals() and hashCode() methods of a class.
102 int itemHash = item.hashCode();
103 int relatedHash = related.hashCode();
130 assertEquals("the hash of " + item + " must be consistent", item.hashCode(), item.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/nist-sip/java/javax/sip/address/
H A DAddress.java24 int hashCode(); method in interface:Address
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java369 public int hashCode() { method in class:WeakHashtable.Entry
371 return (getKey()==null ? 0 : getKey().hashCode()) ^
372 (getValue()==null ? 0 : getValue().hashCode());
393 private final int hashCode; field in class:WeakHashtable.Referenced
401 // Calc a permanent hashCode so calls to Hashtable.remove()
403 hashCode = referant.hashCode();
412 // Calc a permanent hashCode so calls to Hashtable.remove()
414 hashCode = key.hashCode();
418 public int hashCode() { method in class:WeakHashtable.Referenced
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java87 public int hashCode() { method in class:NTUserPrincipal
89 hash = LangUtils.hashCode(hash, this.username);
90 hash = LangUtils.hashCode(hash, this.domain);
/external/apache-http/src/org/apache/http/message/
H A DBasicNameValuePair.java178 public int hashCode() { method in class:BasicNameValuePair
180 hash = LangUtils.hashCode(hash, this.name);
181 hash = LangUtils.hashCode(hash, this.value);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECParameterSpec.java117 public int hashCode() method in class:ECParameterSpec
119 return this.getCurve().hashCode() ^ this.getG().hashCode();
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DNameValuePair.java57 public int hashCode() { method in class:NameValuePair
58 return name.hashCode() * 31 + value.hashCode();
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java108 public int hashCode() { method in class:LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());

Completed in 434 milliseconds

1234567891011>>