/external/pdfium/core/fxcrt/ |
D | weak_ptr_unittest.cpp | 103 PseudoDeletable thing2; in TEST() local 108 UniqueTestPtr unique2(&thing2); in TEST() 113 EXPECT_EQ(&thing2, ptr2.Get()); in TEST() 117 EXPECT_EQ(0, thing2.delete_count()); in TEST() 120 EXPECT_EQ(1, thing2.delete_count()); in TEST() 143 PseudoDeletable thing2; in TEST() local 146 UniqueTestPtr unique2(&thing2); in TEST() 154 EXPECT_EQ(0, thing2.delete_count()); in TEST() 159 PseudoDeletable thing2; in TEST() local 162 UniqueTestPtr unique2(&thing2); in TEST() [all …]
|
D | maybe_owned_unittest.cpp | 60 PseudoDeletable thing2(200, &delete_count); in TEST() local 63 ptr = &thing2; in TEST() 65 EXPECT_EQ(ptr.Get(), &thing2); in TEST() 86 PseudoDeletable thing2(200, &delete_count); in TEST() local 88 UnownedPtr<PseudoDeletable> unowned2(&thing2); in TEST() 125 PseudoDeletable thing2(400, &unowned_delete_count); in TEST() local 129 ptr = &thing2; in TEST()
|
D | observed_ptr_unittest.cpp | 213 SelfObservable thing2; 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()
|
/external/llvm-project/llvm/test/MC/X86/ |
D | macho-reloc-errors-x86_64.s | 4 mov %rax, thing@GOT-thing2@GOT 5 mov %rax, (thing-thing2)(%rip) 7 mov %rax, thing-thing2
|
D | macho-reloc-errors-x86.s | 3 mov %eax, thing-thing2 4 mov %eax, defined-thing2
|
/external/llvm/test/MC/X86/ |
D | macho-reloc-errors-x86_64.s | 4 mov %rax, thing@GOT-thing2@GOT 5 mov %rax, (thing-thing2)(%rip) 7 mov %rax, thing-thing2
|
D | macho-reloc-errors-x86.s | 3 mov %eax, thing-thing2 4 mov %eax, defined-thing2
|
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/internal/bytecode/ |
D | ProxyMakerTest.java | 43 Thing thing2 = mock(Thing.class); in cachesProxyClass() local 46 Thing proxy2 = maker.createProxy(Thing.class, thing2); in cachesProxyClass()
|
/external/skia/tests/ |
D | RefCntTest.cpp | 27 std::thread thing2(bounce_ref, ref); in test_refCnt() local 30 thing2.join(); in test_refCnt() 57 std::thread thing2(bounce_ref, ref); in test_weakRefCnt() local 62 thing2.join(); in test_weakRefCnt()
|
/external/skqp/tests/ |
D | RefCntTest.cpp | 27 std::thread thing2(bounce_ref, ref); in test_refCnt() local 30 thing2.join(); in test_refCnt() 57 std::thread thing2(bounce_ref, ref); in test_weakRefCnt() local 62 thing2.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 | 1449 def thing2(): pass function 1456 for func in thing1, thing2, thing3: 1478 def thing2(): pass function 1485 for func in thing1, thing2, thing3:
|
/external/python/mock/mock/tests/ |
D | testpatch.py | 1439 def thing2(): pass function 1446 for func in thing1, thing2, thing3: 1468 def thing2(): pass function 1475 for func in thing1, thing2, thing3:
|
/external/tensorflow/tensorflow/stream_executor/lib/ |
D | statusor_test.cc | 227 const StatusOr<int> thing2; in TEST() local
|
/external/libtextclassifier/abseil-cpp/absl/status/ |
D | statusor_test.cc | 318 const absl::StatusOr<int> thing2; in TEST() local 319 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
|
/external/openscreen/third_party/abseil/src/absl/status/ |
D | statusor_test.cc | 329 const absl::StatusOr<int> thing2; in TEST() local 330 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/status/ |
D | statusor_test.cc | 318 const absl::StatusOr<int> thing2; in TEST() local 319 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
|
/external/angle/third_party/abseil-cpp/absl/status/ |
D | statusor_test.cc | 329 const absl::StatusOr<int> thing2; in TEST() local 330 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
|
/external/clang/include/clang/Basic/ |
D | AttrDocs.td | 823 [[maybe_unused]] bool thing2) { 824 [[maybe_unused]] bool b = thing1 && thing2;
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 1298 >>> thing2 = object() 1301 ... with patch('__main__.thing2', return_value=None) as child2:
|
/external/llvm-project/clang/include/clang/Basic/ |
D | AttrDocs.td | 1595 [[maybe_unused]] bool thing2) { 1596 [[maybe_unused]] bool b = thing1 && thing2;
|