HomeSort by relevance Sort by last modified time
    Searched refs:hashCode (Results 1 - 25 of 6226) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/088-ssa-combine-blocks/
Blort.java 31 hashCode();
32 hashCode();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 23 private int hashCode;
25 public Window(String title, int hashCode) {
27 this.hashCode = hashCode;
35 return hashCode;
39 return Integer.toHexString(hashCode);
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
AClassWithFinalEqualsHashCode.java 5 public final int hashCode() {
6 return super.hashCode();
  /art/test/022-interface/src/
ObjectOverridingInterface.java 22 public int hashCode();
  /libcore/luni/src/main/java/libcore/internal/
StringPool.java 45 int hashCode = 0;
47 hashCode = (hashCode * 31) + array[i];
51 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
52 hashCode ^= (hashCode >>> 7) ^ (hashCode >>> 4);
53 int index = hashCode & (pool.length - 1)
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
ByteArray.java 22 * Byte array wrapper for hashtable use. Implements equals() and hashCode().
26 private final int hashCode;
30 this.hashCode = Arrays.hashCode(bytes);
34 public int hashCode() {
35 return hashCode;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
ObjectIdentityHashCodeVisitor.java 42 public static int hashCode(final Node node) {
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/
DataKey.java 45 public int hashCode() {
46 return getClass().hashCode();
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
UserDataKey.java 26 public int hashCode()
28 return getClass().hashCode();
  /external/testng/src/test/java/test/triangle/
Child1.java 13 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
19 assert m_isInitialized : "Wasn't initialized correctly " + hashCode() + " " + getClass();
  /libcore/ojluni/src/main/java/java/sql/
RowId.java 118 int hashCode();
  /external/proguard/src/proguard/evaluation/value/
ConvertedByteValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedCharacterValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedDoubleValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedFloatValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedIntegerValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedLongValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
ConvertedShortValue.java 53 public int hashCode()
55 return super.hashCode() ^
56 value.hashCode();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseMethodReference.java 45 public int hashCode() {
46 int hashCode = getDefiningClass().hashCode();
47 hashCode = hashCode*31 + getName().hashCode();
48 hashCode = hashCode*31 + getReturnType().hashCode();
49 return hashCode*31 + getParameterTypes().hashCode()
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
Constant.java 92 int hashCode;
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 = 0x7FFFFFFF & (type + strVal1.hashCode(
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/data/
EuiccNotificationTest.java 41 assertEquals(n.hashCode(), t.hashCode());
45 assertNotEquals(n.hashCode(), t.hashCode());
49 assertNotEquals(n.hashCode(), t.hashCode());
53 assertNotEquals(n.hashCode(), t.hashCode());
57 assertNotEquals(n.hashCode(), t.hashCode());
    [all...]
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
56 public static int hashCode(final int seed, final int hashcode) {
57 return seed * HASH_OFFSET + hashcode;
60 public static int hashCode(final int seed, final boolean b) {
61 return hashCode(seed, b ? 1 : 0);
64 public static int hashCode(final int seed, final Object obj) {
65 return hashCode(seed, obj != null ? obj.hashCode() : 0)
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/visitor/
NoCommentHashCodeVisitorTest.java 16 assertEquals(p1.hashCode(), p2.hashCode());
23 assertEquals(p1.hashCode(), p2.hashCode());
32 assertNotEquals(p1.hashCode(), p2.hashCode());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHPrivateKeyParameters.java 24 public int hashCode()
26 return x.hashCode() ^ super.hashCode();
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
ObjectsTest.java 47 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(3, 2, 1))
    [all...]

Completed in 700 milliseconds

1 2 3 4 5 6 7 8 91011>>