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

1234567891011>>

/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
H A DAClassWithFinalEqualsHashCode.java5 public final int hashCode() { method in class:AClassWithFinalEqualsHashCode
6 return super.hashCode();
/external/conscrypt/common/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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
H A DObjectIdentityHashCodeVisitor.java42 public static int hashCode(final Node node) { method in class:ObjectIdentityHashCodeVisitor
48 return n.hashCode();
53 return n.hashCode();
58 return n.hashCode();
63 return n.hashCode();
68 return n.hashCode();
73 return n.hashCode();
78 return n.hashCode();
83 return n.hashCode();
88 return n.hashCode();
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
H A DDataKey.java45 public int hashCode() { method in class:DataKey
46 return getClass().hashCode();
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
H A DUserDataKey.java26 public int hashCode() method in class:UserDataKey
28 return getClass().hashCode();
/external/testng/src/test/java/test/triangle/
H A DChild1.java13 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
19 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
/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() ^
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseMethodReference.java45 public int hashCode() { method in class:BaseMethodReference
46 int hashCode = getDefiningClass().hashCode();
47 hashCode = hashCode*31 + getName().hashCode();
48 hashCode = hashCode*31 + getReturnType().hashCode();
49 return hashCode*3
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
H A DConstant.java92 int hashCode; field in class:Constant
106 hashCode = i.hashCode;
117 this.hashCode = 0x7FFFFFFF & (type + intVal);
128 this.hashCode = 0x7FFFFFFF & (type + (int) longVal);
139 this.hashCode = 0x7FFFFFFF & (type + (int) floatVal);
150 this.hashCode = 0x7FFFFFFF & (type + (int) doubleVal);
175 hashCode = 0x7FFFFFFF & (type + strVal1.hashCode());
178 hashCode
262 public int hashCode() { method in class:Constant
[all...]
/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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/visitor/
H A DNoCommentHashCodeVisitorTest.java16 assertEquals(p1.hashCode(), p2.hashCode());
23 assertEquals(p1.hashCode(), p2.hashCode());
32 assertNotEquals(p1.hashCode(), p2.hashCode());
/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();
/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...]

Completed in 721 milliseconds

1234567891011>>