Searched defs:hashCode (Results 226 - 235 of 235) sorted by relevance

12345678910

/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java1234 public int hashCode() { method in class:Calendar
1236 + getMinimalDaysInFirstWeek() + getTimeZone().hashCode();
H A DCollections.java377 public int hashCode() {
378 return (k == null ? 0 : k.hashCode())
379 ^ (v == null ? 0 : v.hashCode());
587 public int hashCode() { method in class:Collections.SynchronizedList
589 return list.hashCode();
718 public int hashCode() { method in class:Collections.SynchronizedMap
720 return m.hashCode();
800 public int hashCode() { method in class:Collections.SynchronizedSet
802 return c.hashCode();
1075 public int hashCode() { method in class:Collections.UnmodifiableList
1200 public int hashCode() { method in class:Collections.UnmodifiableMap.UnmodifiableEntrySet.UnmodifiableMapEntry
1297 public int hashCode() { method in class:Collections.UnmodifiableMap
1349 public int hashCode() { method in class:Collections.UnmodifiableSet
3035 public int hashCode() { method in class:Collections.CheckedList
3093 public int hashCode() { method in class:Collections.CheckedSet
3240 public int hashCode() { method in class:Collections.CheckedMap
3311 public int hashCode() { method in class:Collections.CheckedMap.CheckedEntry
3454 public int hashCode() { method in class:Collections.CheckedMap.CheckedEntrySet
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DField.java210 * @see #hashCode
545 public int hashCode() { method in class:Field
547 return name.hashCode() ^ getDeclaringClass().getName().hashCode();
/dalvik/libcore/math/src/main/java/java/math/
H A DBigInteger.java203 private transient int hashCode = 0; field in class:BigInteger
1059 public int hashCode() { method in class:BigInteger
1060 validate1("hashCode", this);
1061 if (hashCode != 0) {
1062 return hashCode;
1064 establishOldRepresentation("hashCode");
1066 hashCode = (int)(hashCode * 33 + (digits[i] & 0xffffffff));
1068 hashCode = hashCode * sig
[all...]
H A DBigDecimal.java145 private transient int hashCode = 0; field in class:BigDecimal
2368 public int hashCode() { method in class:BigDecimal
2369 if (hashCode != 0) {
2370 return hashCode;
2373 hashCode = (int)(smallValue & 0xffffffff);
2374 hashCode = 33 * hashCode + (int)((smallValue >> 32) & 0xffffffff);
2375 hashCode = 17 * hashCode + scale;
2376 return hashCode;
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DDateFormat.java390 * @see #hashCode
722 public int hashCode() { method in class:DateFormat
725 + calendar.getTimeZone().hashCode()
727 + numberFormat.hashCode();
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DSerializationStressTest2.java376 public int hashCode() { method in class:SerializationStressTest2.HashCodeTest
378 return super.hashCode();
798 public int hashCode() { method in class:SerializationStressTest2.SyntheticFieldTest
806 return super.hashCode();
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DFormatterTest.java109 public int hashCode() { method in class:FormatterTest.MockFormattable
1540 Integer.toHexString(input[i].hashCode()), f.toString());
1545 Integer.toHexString(input[i].hashCode()).toUpperCase(Locale.US), f.toString());
/dalvik/libcore/luni/src/main/java/java/lang/
H A DCharacter.java605 * {@link java.lang.Object#hashCode()}.
609 public final int hashCode() { method in class:Character.Subset
610 return super.hashCode();
2557 public int hashCode() { method in class:Character
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 191 milliseconds

12345678910