HomeSort by relevance Sort by last modified time
    Searched refs:hashCode (Results 1 - 25 of 4764) 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);
  /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/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/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseFieldReference.java 41 public int hashCode() {
42 int hashCode = getDefiningClass().hashCode();
43 hashCode = hashCode*31 + getName().hashCode();
44 return hashCode*31 + getType().hashCode();
BaseMethodReference.java 44 public int hashCode() {
45 int hashCode = getDefiningClass().hashCode();
46 hashCode = hashCode*31 + getName().hashCode();
47 hashCode = hashCode*31 + getReturnType().hashCode();
48 return hashCode*31 + getParameterTypes().hashCode()
    [all...]
  /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();
IdentifiedDoubleValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedFloatValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedIntegerValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
IdentifiedLongValue.java 55 public int hashCode()
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHPrivateKeyParameters.java 24 public int hashCode()
26 return x.hashCode() ^ super.hashCode();
DHPublicKeyParameters.java 24 public int hashCode()
26 return y.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...]
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 49 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(3, 2, 1))
    [all...]

Completed in 1381 milliseconds

1 2 3 4 5 6 7 8 91011>>