Searched refs:hashCode (Results 26 - 50 of 916) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DTimestamp_ImplTest.java47 assertTrue(new Timestamp(now, cpath).hashCode() == (now.hashCode() ^ cpath
48 .hashCode()));
/external/nist-sip/java/javax/sip/header/
H A DHeader.java10 int hashCode(); method in interface:Header
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java69 public int hashCode() method in class:CompositeDoubleValue
71 return super.hashCode() ^
72 doubleValue1.hashCode() ^
73 doubleValue2.hashCode();
H A DCompositeFloatValue.java69 public int hashCode() method in class:CompositeFloatValue
71 return super.hashCode() ^
72 floatValue1.hashCode() ^
73 floatValue2.hashCode();
H A DCompositeIntegerValue.java75 public int hashCode() method in class:CompositeIntegerValue
77 return super.hashCode() ^
78 integerValue1.hashCode() ^
79 integerValue2.hashCode();
H A DCompositeLongValue.java75 public int hashCode() method in class:CompositeLongValue
77 return super.hashCode() ^
78 longValue1.hashCode() ^
79 longValue2.hashCode();
H A DTopValue.java69 public int hashCode() method in class:TopValue
71 return this.getClass().hashCode();
H A DIdentifiedReferenceValue.java79 public int hashCode() method in class:IdentifiedReferenceValue
81 return super.hashCode() ^
82 valuefactory.hashCode() ^
/external/android-mock/src/com/google/android/testing/mocking/
H A DGeneratedClassFile.java45 public int hashCode() { method in class:GeneratedClassFile
46 return (this.getClass().getName() + className).hashCode();
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListHashCodeTester.java22 * Tests {@link java.util.List#hashCode}.
33 ((element == null) ? 0 : element.hashCode());
36 "A List's hashCode() should be computed from those of its elements.",
37 expectedHashCode, getList().hashCode());
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DArrayEncodedSubValue.java41 private int hashCode = 0; field in class:ArrayEncodedSubValue
126 hashCode = 0;
129 hashCode = 31 * hashCode + encodedValue.hashCode();
134 public int hashCode() { method in class:ArrayEncodedSubValue
137 if (hashCode == 0)
139 return hashCode;
H A DAnnotationEncodedSubValue.java43 private int hashCode = 0; field in class:AnnotationEncodedSubValue
153 hashCode = annotationType.hashCode();
156 hashCode = 31 * hashCode + names[i].hashCode();
157 hashCode = 31 * hashCode + values[i].hashCode();
162 public int hashCode() { method in class:AnnotationEncodedSubValue
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DECFieldF2mTest.java285 * Test #1 for <code>hashCode()</code> method.<br>
292 int hc = f.hashCode();
293 assertTrue(hc == f.hashCode() &&
294 hc == f.hashCode() &&
295 hc == f.hashCode() &&
296 hc == f.hashCode() &&
297 hc == f.hashCode() &&
298 hc == f.hashCode() &&
299 hc == f.hashCode() &&
300 hc == f.hashCode());
[all...]
H A DECPointTest.java201 * Test #1 for <code>hashCode()</code> method.<br>
208 int hc = f.hashCode();
209 assertTrue(hc == f.hashCode() &&
210 hc == f.hashCode() &&
211 hc == f.hashCode() &&
212 hc == f.hashCode() &&
213 hc == f.hashCode() &&
214 hc == f.hashCode() &&
215 hc == f.hashCode() &&
216 hc == f.hashCode());
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DEncodedArrayItem.java36 private int hashCode = 0; field in class:EncodedArrayItem
111 hashCode = encodedArray.hashCode();
115 public int hashCode() { method in class:EncodedArrayItem
118 if (hashCode == 0)
120 return hashCode;
H A DMethodIdItem.java35 private int hashCode = 0; field in class:MethodIdItem
220 hashCode = classType.hashCode();
221 hashCode = 31 * hashCode + methodPrototype.hashCode();
222 hashCode = 31 * hashCode + methodName.hashCode();
226 public int hashCode() { method in class:MethodIdItem
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMapEntryTest.java82 assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode());
83 assertEquals(control("bar", 2).hashCode(), entry("bar", 2).hashCode());
87 assertEquals(control(NK, 1).hashCode(), entry(NK, 1).hashCode());
88 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
89 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
[all...]
H A DMultisetsImmutableEntryTest.java72 assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode());
73 assertEquals(control("bar", 2).hashCode(), entry("bar", 2).hashCode());
77 assertEquals(control(NE, 1).hashCode(), entry(NE, 1).hashCode());
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExtendedType.java47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
77 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
94 * Override the hashCode() method in the Object class
96 public int hashCode() method in class:ExtendedType
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java113 public int hashCode() { method in class:Occupant
115 result = affiliation.hashCode();
116 result = 17 * result + role.hashCode();
117 result = 17 * result + jid.hashCode();
118 result = 17 * result + (nick != null ? nick.hashCode() : 0);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeSuggestion.java52 public int hashCode() { method in class:DateTimeSuggestion
55 hash = 37 * hash + mLocalizedValue.hashCode();
56 hash = 37 * hash + mLabel.hashCode();
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
H A DPrecompiledTemplateMapKey.java55 public int hashCode() { method in class:PrecompiledTemplateMapKey
58 hash = 31 * hash + templateName.hashCode();
59 hash = 31 * hash + escapeMode.hashCode();
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractMapEntry.java79 * Gets a hashCode compatible with the equals method.
81 * Implemented per API documentation of {@link java.util.Map.Entry#hashCode()}
85 public int hashCode() { method in class:AbstractMapEntry
86 return (getKey() == null ? 0 : getKey().hashCode()) ^ (getValue() == null ? 0 : getValue().hashCode());
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DMoreZeroFrame.java133 public int hashCode() method in class:MoreZeroFrame
135 int hashCode = super.hashCode();
139 hashCode ^= additionalVariables[index].hashCode();
142 return hashCode;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHKeyParameters.java43 public int hashCode() method in class:DHKeyParameters
49 code ^= params.hashCode();

Completed in 1298 milliseconds

1234567891011>>