Home
last modified time | relevance | path

Searched refs:thing1 (Results 1 – 15 of 15) sorted by relevance

/external/pdfium/core/fxcrt/
Dweak_ptr_unittest.cpp102 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 …]
Dmaybe_owned_unittest.cpp44 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 …]
Dobserved_ptr_unittest.cpp211 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/
DProxyMakerTest.java42 Thing thing1 = mock(Thing.class); in cachesProxyClass() local
45 Thing proxy1 = maker.createProxy(Thing.class, thing1); in cachesProxyClass()
/external/skia/tests/
DRefCntTest.cpp26 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/
DRefCntTest.cpp26 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/
Dbig-atomic-ops.c242 struct bar smallThing, thing1, thing2; variable
283 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
Datomic-ops.c387 struct bar smallThing, thing1, thing2; variable
424 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
/external/clang/test/CodeGen/
Dbig-atomic-ops.c242 struct bar smallThing, thing1, thing2; variable
283 _Bool x = __atomic_compare_exchange(&smallThing, &thing1, &thing2, 1, 5, 5); in structAtomicCmpExchange()
Datomic-ops.c373 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/
Dtestpatch.py1444 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/
Dtestpatch.py1434 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/
DAttrDocs.td822 [[maybe_unused]] void f([[maybe_unused]] bool thing1,
824 [[maybe_unused]] bool b = thing1 && thing2;
/external/python/cpython3/Doc/library/
Dunittest.mock.rst1297 >>> thing1 = object()
1300 >>> with patch('__main__.thing1', return_value=None) as child1:
/external/llvm-project/clang/include/clang/Basic/
DAttrDocs.td1594 [[maybe_unused]] void f([[maybe_unused]] bool thing1,
1596 [[maybe_unused]] bool b = thing1 && thing2;