Searched defs:equals (Results 1 - 8 of 8) sorted by relevance

/system/timezone/distro/core/src/main/com/android/timezone/distro/
H A DStagedDistroOperation.java47 public boolean equals(Object o) { method in class:StagedDistroOperation
60 return distroVersion != null ? distroVersion.equals(that.distroVersion)
H A DDistroVersion.java133 public boolean equals(Object o) { method in class:DistroVersion
152 return rulesVersion.equals(that.rulesVersion);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
H A DZoneTabFile.java90 public boolean equals(Object o) { method in class:ZoneTabFile.CountryEntry
100 if (!isoCode.equals(that.isoCode)) {
103 return olsonId.equals(that.olsonId);
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
H A DSimpleParcelable.java44 public boolean equals(Object o) { method in class:SimpleParcelable
53 (mName != null && !mName.equals(p.mName))) {
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DZoneOffsetPeriod.java137 public boolean equals(Object o) { method in class:ZoneOffsetPeriod
147 Objects.equals(start, that.start) &&
148 Objects.equals(end, that.end) &&
149 Objects.equals(name, that.name);
180 public boolean equals(Object o) { method in class:ZoneOffsetPeriod.ZonePeriodsKey
188 return Objects.equals(periods, zoneKey.periods);
/system/update_engine/payload_generator/
H A Dblock_mapping.cc88 bool equals = false; local
89 if (!existing_block.CompareData(block_data, &equals))
91 if (equals)
114 bool* equals) {
116 *equals = block_data == other_block;
126 *equals = blob == other_block;
113 CompareData(const brillo::Blob& other_block, bool* equals) argument
/system/core/libcutils/
H A Dhashmap.cpp39 bool (*equals)(void* keyA, void* keyB); member in struct:Hashmap
45 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) {
47 assert(equals != NULL);
71 map->equals = equals;
187 bool (*equals)(void*, void*)) {
194 return equals(keyA, keyB);
218 if (equalKeys(current->key, current->hash, key, hash, map->equals)) {
235 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
250 if (equalKeys(entry->key, entry->hash, key, hash, map->equals)) {
186 equalKeys(void* keyA, int hashA, void* keyB, int hashB, bool (*equals)(void*, void*)) argument
[all...]
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java50 if (args[0].equals("-c")) {
52 } else if (args[0].equals("-s")) {
111 if (result.equals(s)) {
120 // .equals and HidlSupport.interfacesEqual should have the same behavior.
122 ExpectTrue(Objects.equals(l, r));
123 ExpectTrue(Objects.equals(r, l));
128 ExpectFalse(Objects.equals(l, r));
129 ExpectFalse(Objects.equals(r, l));
155 @Override public boolean equals(Object other) { method in class:HidlTestJava.BazCallback
319 ExpectTrue(result.equals(fo
[all...]

Completed in 6835 milliseconds