Home
last modified time | relevance | path

Searched refs:other2 (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DSelection.java45 Selection other2 = (Selection)other; in equals() local
46 return anchor == other2.anchor in equals()
47 && caret == other2.caret in equals()
48 && clickAfter == other2.clickAfter; in equals()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DMigration.kt382 other2: Flow<T3>, in startWith()
384 ) = combine(this, other, other2, transform) in startWith()
393 other2: Flow<T3>, in startWith()
396 ) = combine(this, other, other2, other3, transform) in startWith()
405 other2: Flow<T3>, in startWith()
409 ): Flow<R> = combine(this, other, other2, other3, other4, transform) in startWith()
/external/python/parse_type/tests/
Dtest_parse_util.py111 other2 = Field(field.name, "XXX")
112 self.assertNotEqual(field.format, other2.format)
113 self.assertNotEqual(field, other2)
121 other2 = Field(field.name, "XXX")
122 other2_text = str(other2)
123 self.assertNotEqual(field.format, other2.format)
/external/oss-fuzz/projects/libpng-proto/
Dpng_fuzz_proto.proto9 required uint32 other2 = 4; // Only 1 byte used. field
Dpng_proto_fuzzer_example.cc62 WriteByte(ihdr_str, ihdr.other2()); in ProtoToPng()
/external/v8/src/codegen/arm64/
Dregister-arm64.h579 void Remove(const CPURegister& other1, const CPURegister& other2 = NoCPUReg,
609 const CPURegister& other2 = NoCPUReg,
614 if (!other2.IsNone() && (other2.type() == type_)) list |= other2.bit();
Dassembler-arm64-inl.h75 const CPURegister& other2, in Remove() argument
79 if (!other2.IsNone() && (other2.type() == type_)) Remove(other2.code()); in Remove()
/external/libchrome/base/memory/
Dref_counted_unittest.cc574 const scoped_refptr<Other> other2(other); in TEST() local
575 EXPECT_EQ(other2, Overloaded(std::move(other))); in TEST()
/external/guice/core/test/com/google/inject/internal/
DOptionalBinderTest.java1452 RealOptionalBinder.Default other2 = Dummy.class.getAnnotation(RealOptionalBinder.Default.class); in testCompareEqualsAgainstOtherAnnotation() local
1453 assertEquals(impl2, other2); in testCompareEqualsAgainstOtherAnnotation()
1456 assertFalse(impl1.equals(other2)); in testCompareEqualsAgainstOtherAnnotation()
1458 assertFalse(other1.equals(other2)); in testCompareEqualsAgainstOtherAnnotation()
/external/python/cpython3/Lib/test/
Dtest_ipaddress.py1619 other2 = ipaddress.IPv4Network('1.2.2.0/24')
1622 self.assertFalse(self.ipv4_network.overlaps(other2))
1623 self.assertTrue(other2.overlaps(other3))
/external/python/ipaddress/
Dtest_ipaddress.py1691 other2 = ipaddress.IPv4Network('1.2.2.0/24')
1694 self.assertFalse(self.ipv4_network.overlaps(other2))
1695 self.assertTrue(other2.overlaps(other3))