Home
last modified time | relevance | path

Searched refs:other2 (Results 1 – 6 of 6) 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/v8/src/arm64/
Dassembler-arm64-inl.h79 const CPURegister& other2, in Remove() argument
83 if (!other2.IsNone() && (other2.type() == type_)) Remove(other2.code()); in Remove()
Dassembler-arm64.h569 const CPURegister& other2 = NoCPUReg,
604 const CPURegister& other2 = NoCPUReg,
610 if (!other2.IsNone() && (other2.type() == type_)) list |= other2.bit();
/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.py1638 other2 = ipaddress.IPv4Network('1.2.2.0/24')
1641 self.assertFalse(self.ipv4_network.overlaps(other2))
1642 self.assertTrue(other2.overlaps(other3))