Searched refs:hashCode (Results 1 - 25 of 1269) sorted by relevance

1234567891011>>

/external/conscrypt/src/main/java/org/conscrypt/
H A DByteArray.java22 * Byte array wrapper for hashtable use. Implements equals() and hashCode().
26 private final int hashCode; field in class:ByteArray
30 this.hashCode = Arrays.hashCode(bytes);
34 public int hashCode() { method in class:ByteArray
35 return hashCode;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseFieldReference.java41 public int hashCode() { method in class:BaseFieldReference
42 int hashCode = getDefiningClass().hashCode();
43 hashCode = hashCode*31 + getName().hashCode();
44 return hashCode*31 + getType().hashCode();
H A DBaseMethodReference.java44 public int hashCode() { method in class:BaseMethodReference
45 int hashCode = getDefiningClass().hashCode();
46 hashCode = hashCode*31 + getName().hashCode();
47 hashCode = hashCode*31 + getReturnType().hashCode();
48 return hashCode*3
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java53 public int hashCode() method in class:ConvertedByteValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedCharacterValue.java53 public int hashCode() method in class:ConvertedCharacterValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedDoubleValue.java53 public int hashCode() method in class:ConvertedDoubleValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedFloatValue.java53 public int hashCode() method in class:ConvertedFloatValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedIntegerValue.java53 public int hashCode() method in class:ConvertedIntegerValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedLongValue.java53 public int hashCode() method in class:ConvertedLongValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedShortValue.java53 public int hashCode() method in class:ConvertedShortValue
55 return super.hashCode() ^
56 value.hashCode();
H A DIdentifiedDoubleValue.java55 public int hashCode() method in class:IdentifiedDoubleValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedFloatValue.java55 public int hashCode() method in class:IdentifiedFloatValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedIntegerValue.java55 public int hashCode() method in class:IdentifiedIntegerValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedLongValue.java55 public int hashCode() method in class:IdentifiedLongValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DNegatedDoubleValue.java60 public int hashCode() method in class:NegatedDoubleValue
62 return super.hashCode() ^
63 doubleValue.hashCode();
H A DNegatedFloatValue.java60 public int hashCode() method in class:NegatedFloatValue
62 return super.hashCode() ^
63 floatValue.hashCode();
H A DNegatedIntegerValue.java60 public int hashCode() method in class:NegatedIntegerValue
62 return super.hashCode() ^
63 integerValue.hashCode();
H A DNegatedLongValue.java60 public int hashCode() method in class:NegatedLongValue
62 return super.hashCode() ^
63 longValue.hashCode();
/external/apache-http/src/org/apache/http/util/
H A DLangUtils.java36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
56 public static int hashCode(final int seed, final int hashcode) { method in class:LangUtils
60 public static int hashCode(final int seed, final boolean b) { method in class:LangUtils
61 return hashCode(seed, b ? 1 : 0);
64 public static int hashCode(final int seed, final Object obj) { method in class:LangUtils
65 return hashCode(seed, obj != null ? obj.hashCode() : 0);
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DFileInfoTest.groovy71 * Test the hashCode() method
74 assert fileInfoFile.hashCode() == fileInfoFile.hashCode()
75 assert fileInfoFile.hashCode() == FileInfo.forFile(NAME, SIZE, LAST_MODIFIED).hashCode()
76 assert fileInfoFile.hashCode() == FileInfo.forFile(NAME, SIZE, new Date()).hashCode() // lastModified ignored
78 assert fileInfoFile.hashCode() != FileInfo.forFile("xyz", SIZE, LAST_MODIFIED).hashCode()
79 assert fileInfoFile.hashCode() !
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHPrivateKeyParameters.java24 public int hashCode() method in class:DHPrivateKeyParameters
26 return x.hashCode() ^ super.hashCode();
H A DDHPublicKeyParameters.java24 public int hashCode() method in class:DHPublicKeyParameters
26 return y.hashCode() ^ super.hashCode();
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DObjectsTest.java47 int h1 = Objects.hashCode(1, "two", 3.0);
48 int h2 = Objects.hashCode(
54 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, 2));
55 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, null, 2));
56 assertTrue(Objects.hashCode(1, null, 2) != Objects.hashCode(1, 2));
57 assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DObjectsTest.java49 int h1 = Objects.hashCode(1, "two", 3.0);
50 int h2 = Objects.hashCode(
56 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, 2));
57 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, null, 2));
58 assertTrue(Objects.hashCode(1, null, 2) != Objects.hashCode(1, 2));
59 assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DItem.java95 int hashCode; field in class:Item
133 hashCode = i.hashCode;
144 this.hashCode = 0x7FFFFFFF & (type + intVal);
155 this.hashCode = 0x7FFFFFFF & (type + (int) longVal);
166 this.hashCode = 0x7FFFFFFF & (type + (int) floatVal);
177 this.hashCode = 0x7FFFFFFF & (type + (int) doubleVal);
203 hashCode = 0x7FFFFFFF & (type + strVal1.hashCode());
206 hashCode
[all...]

Completed in 739 milliseconds

1234567891011>>