Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 5 of 5) sorted by relevance

/system/timezone/distro/core/src/main/com/android/timezone/distro/
DStagedDistroOperation.java65 public int hashCode() { in hashCode() method in StagedDistroOperation
67 result = 31 * result + (distroVersion != null ? distroVersion.hashCode() : 0); in hashCode()
DDistroVersion.java135 public int hashCode() { in hashCode() method in DistroVersion
138 result = 31 * result + rulesVersion.hashCode(); in hashCode()
/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
DZoneTabFile.java111 public int hashCode() { in hashCode() method in ZoneTabFile.CountryEntry
112 int result = isoCode.hashCode(); in hashCode()
113 result = 31 * result + olsonId.hashCode(); in hashCode()
/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DZoneOffsetPeriod.java153 public int hashCode() { in hashCode() method in ZoneOffsetPeriod
192 public int hashCode() { in hashCode() method in ZoneOffsetPeriod.ZonePeriodsKey
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java190 @Override public int hashCode() { return mCalled ? 1 : 0; } in hashCode() method in HidlTestJava.BazCallback
543 ExpectFalse(one.hashCode() == two.hashCode()); in runClientSafeUnionTests()
546 ExpectTrue(one.hashCode() == two.hashCode()); in runClientSafeUnionTests()
1002 ExpectTrue(t1.hashCode() == t2.hashCode()); in client()