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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
Hashing.java 39 static int smear(int hashCode) {
40 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
41 return hashCode ^ (hashCode >>> 7) ^ (hashCode >>> 4);
RegularImmutableSet.java 35 private final transient int hashCode;
38 Object[] elements, int hashCode, Object[] table, int mask) {
42 this.hashCode = hashCode;
49 for (int i = Hashing.smear(target.hashCode()); true; i++) {
60 @Override public int hashCode() {
61 return hashCode;
  /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);
  /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...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ByteArray.java 22 * Byte array wrapper for hashtable use. Implements equals() and hashCode().
26 private final int hashCode;
30 this.hashCode = Arrays.hashCode(bytes);
33 @Override public int hashCode() {
34 return hashCode;
  /libcore/luni/src/main/java/java/sql/
RowId.java 35 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() ^
NegatedDoubleValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 doubleValue.hashCode();
NegatedFloatValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 floatValue.hashCode();
NegatedIntegerValue.java 60 public int hashCode()
62 return super.hashCode() ^
63 integerValue.hashCode();
  /external/apache-http/src/org/apache/http/util/
LangUtils.java 36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
51 public static int hashCode(final int seed, final int hashcode) {
52 return seed * HASH_OFFSET + hashcode;
55 public static int hashCode(final int seed, final boolean b) {
56 return hashCode(seed, b ? 1 : 0);
59 public static int hashCode(final int seed, final Object obj) {
60 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-tests/test/com/google/common/base/
ObjectsTest.java 48 int h1 = Objects.hashCode(1, "two", 3.0);
49 int h2 = Objects.hashCode(new Integer(1), new String("two"),
55 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, 2));
56 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, null, 2));
57 assertTrue(Objects.hashCode(1, null, 2) != Objects.hashCode(1, 2));
58 assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(3, 2, 1))
    [all...]

Completed in 640 milliseconds

1 2 3 4 5 6 7 8 91011>>