/external/pdfium/core/fxcrt/ |
D | weak_ptr_unittest.cpp | 102 PseudoDeletable thing1; in TEST() local 105 UniqueTestPtr unique1(&thing1); in TEST() 111 EXPECT_EQ(&thing1, ptr1.Get()); in TEST() 116 EXPECT_EQ(0, thing1.delete_count()); in TEST() 119 EXPECT_EQ(1, thing1.delete_count()); in TEST() 142 PseudoDeletable thing1; in TEST() local 145 UniqueTestPtr unique1(&thing1); in TEST() 153 EXPECT_EQ(0, thing1.delete_count()); in TEST() 158 PseudoDeletable thing1; in TEST() local 161 UniqueTestPtr unique1(&thing1); in TEST() [all …]
|
D | maybe_owned_unittest.cpp | 44 PseudoDeletable thing1(100, &delete_count); in TEST() local 46 MaybeOwned<PseudoDeletable> ptr(&thing1); in TEST() 48 EXPECT_EQ(ptr.Get(), &thing1); in TEST() 50 EXPECT_TRUE(ptr == &thing1); in TEST() 51 EXPECT_FALSE(ptr != &thing1); in TEST() 62 MaybeOwned<PseudoDeletable> ptr(&thing1); in TEST() 73 MaybeOwned<PseudoDeletable> ptr(&thing1); in TEST() 85 PseudoDeletable thing1(100, &delete_count); in TEST() local 87 UnownedPtr<PseudoDeletable> unowned1(&thing1); in TEST() 159 PseudoDeletable thing1(100, &delete_count); in TEST() local [all …]
|
D | observed_ptr_unittest.cpp | 211 SelfObservable thing1; in TEST() local 214 thing1.m_pOther.Reset(&thing2); in TEST() 215 thing2.m_pOther.Reset(&thing1); in TEST() 216 EXPECT_EQ(&thing2, thing1.m_pOther.Get()); in TEST() 217 EXPECT_EQ(&thing1, thing2.m_pOther.Get()); in TEST() 219 EXPECT_EQ(nullptr, thing1.m_pOther.Get()); in TEST()
|
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/internal/bytecode/ |
D | ProxyMakerTest.java | 42 Thing thing1 = mock(Thing.class); in cachesProxyClass() local 45 Thing proxy1 = maker.createProxy(Thing.class, thing1); in cachesProxyClass()
|
/external/skia/tests/ |
D | RefCntTest.cpp | 26 std::thread thing1(bounce_ref, ref); in test_refCnt() local 29 thing1.join(); in test_refCnt() 56 std::thread thing1(bounce_ref, ref); in test_weakRefCnt() local 61 thing1.join(); in test_weakRefCnt()
|
/external/skqp/tests/ |
D | RefCntTest.cpp | 26 std::thread thing1(bounce_ref, ref); in test_refCnt() local 29 thing1.join(); in test_refCnt() 56 std::thread thing1(bounce_ref, ref); in test_weakRefCnt() local 61 thing1.join(); in test_weakRefCnt()
|
/external/llvm-project/clang/test/CodeGen/ |
D | big-atomic-ops.c | 242 struct bar smallThing, thing1, thing2; variable 283 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
|
D | atomic-ops.c | 387 struct bar smallThing, thing1, thing2; variable 424 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
|
/external/clang/test/CodeGen/ |
D | big-atomic-ops.c | 242 struct bar smallThing, thing1, thing2; variable 283 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
|
D | atomic-ops.c | 373 struct bar smallThing, thing1, thing2; variable 410 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testpatch.py | 1444 def thing1(): pass function 1456 for func in thing1, thing2, thing3: 1473 def thing1(): pass function 1485 for func in thing1, thing2, thing3:
|
/external/python/mock/mock/tests/ |
D | testpatch.py | 1434 def thing1(): pass function 1446 for func in thing1, thing2, thing3: 1463 def thing1(): pass function 1475 for func in thing1, thing2, thing3:
|
/external/clang/include/clang/Basic/ |
D | AttrDocs.td | 822 [[maybe_unused]] void f([[maybe_unused]] bool thing1, 824 [[maybe_unused]] bool b = thing1 && thing2;
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 1297 >>> thing1 = object() 1300 >>> with patch('__main__.thing1', return_value=None) as child1:
|
/external/llvm-project/clang/include/clang/Basic/ |
D | AttrDocs.td | 1594 [[maybe_unused]] void f([[maybe_unused]] bool thing1, 1596 [[maybe_unused]] bool b = thing1 && thing2;
|