/third_party/boost/libs/iostreams/test/ |
D | execute_test.cpp | 65 class thrower { class 68 explicit thrower(bool& executed) : executed_(executed) { } in thrower() function in thrower 75 thrower& operator=(const thrower&); 204 execute_all(thrower<0>(executed)), in operation_throws_test() 215 thrower<0>(executed), in operation_throws_test() 228 thrower<0>(executed), in operation_throws_test() 243 thrower<0>(executed), in operation_throws_test() 262 thrower<1>(cleaned_up) in cleanup_throws_test() 275 thrower<1>(cleaned_up1), in cleanup_throws_test() 290 thrower<2>(cleaned_up2) in cleanup_throws_test() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
D | optional_exception_safety_test.cc | 146 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 147 optional_ptr->emplace(thrower); in TEST() 217 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 218 *optional_ptr = thrower; in TEST() 249 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 250 *optional_ptr = std::move(thrower); in TEST() 275 auto thrower = MoveThrower(kUpdatedInteger); in TEST() local 277 EXPECT_TRUE(testing::TestNothrowOp([&]() { empty = std::move(thrower); })); in TEST() 280 auto thrower = MoveThrower(kUpdatedInteger); in TEST() local 283 testing::TestNothrowOp([&]() { nonempty = std::move(thrower); })); in TEST()
|
/third_party/abseil-cpp/absl/types/ |
D | optional_exception_safety_test.cc | 146 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 147 optional_ptr->emplace(thrower); in TEST() 217 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 218 *optional_ptr = thrower; in TEST() 249 auto thrower = Thrower(kUpdatedInteger, testing::nothrow_ctor); in TEST() local 250 *optional_ptr = std::move(thrower); in TEST() 275 auto thrower = MoveThrower(kUpdatedInteger); in TEST() local 277 EXPECT_TRUE(testing::TestNothrowOp([&]() { empty = std::move(thrower); })); in TEST() 280 auto thrower = MoveThrower(kUpdatedInteger); in TEST() local 283 testing::TestNothrowOp([&]() { nonempty = std::move(thrower); })); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/memory/ |
D | memory_exception_safety_test.cc | 39 EXPECT_TRUE(tester.Test([](Thrower* thrower) { in TEST() argument 40 static_cast<void>(absl::make_unique<Thrower>(*thrower)); in TEST() 43 EXPECT_TRUE(tester.Test([](Thrower* thrower) { in TEST() argument 44 static_cast<void>(absl::make_unique<Thrower>(std::move(*thrower))); in TEST()
|
/third_party/abseil-cpp/absl/memory/ |
D | memory_exception_safety_test.cc | 39 EXPECT_TRUE(tester.Test([](Thrower* thrower) { in TEST() argument 40 static_cast<void>(absl::make_unique<Thrower>(*thrower)); in TEST() 43 EXPECT_TRUE(tester.Test([](Thrower* thrower) { in TEST() argument 44 static_cast<void>(absl::make_unique<Thrower>(std::move(*thrower))); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 154 for (const auto& thrower : *fixed_arr) { in ReadMemory() 155 sum += thrower.Get(); in ReadMemory() 164 auto thrower = in TEST() local 166 fixed_arr_ptr->fill(thrower); in TEST() 181 auto thrower = in TEST() local 183 fixed_arr_ptr->fill(thrower); in TEST()
|
/third_party/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 154 for (const auto& thrower : *fixed_arr) { in ReadMemory() 155 sum += thrower.Get(); in ReadMemory() 164 auto thrower = in TEST() local 166 fixed_arr_ptr->fill(thrower); in TEST() 181 auto thrower = in TEST() local 183 fixed_arr_ptr->fill(thrower); in TEST()
|
/third_party/node/test/parallel/ |
D | test-stream2-readable-non-empty-end.js | 43 test.on('end', thrower); 44 function thrower() { function 63 test.removeListener('end', thrower);
|
D | test-assert.js | 114 function thrower(errorConstructor) { function 119 assert.throws(() => thrower(a.AssertionError), a.AssertionError, 'message'); 120 assert.throws(() => thrower(a.AssertionError), a.AssertionError); 121 assert.throws(() => thrower(a.AssertionError)); 124 assert.throws(() => thrower(TypeError)); 128 () => a.throws(() => thrower(TypeError), a.AssertionError), 145 a.doesNotThrow(() => thrower(TypeError), a.AssertionError); 157 a.doesNotThrow(() => thrower(TypeError), TypeError); 167 () => a.doesNotThrow(() => thrower(Error), 'user message'), 178 () => a.doesNotThrow(() => thrower(Error)), [all …]
|
D | test-util-promisify.js | 175 const thrower = promisify(function(a, b, c, cb) { constant 179 thrower(1, 2, 3)
|
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | direct_resolve.js | 6 function thrower() { function 20 thrower, undefined, undefined, {reason: reason}, undefined); 26 undefined, thrower, undefined, {reason: reason}, undefined);
|
D | using.js | 11 function thrower(e) { function 39 return thrower(e); 42 return maybePromise._then(iterator, thrower,
|
D | util.js | 101 function thrower(r) { function 345 thrower: thrower, property
|
/third_party/node/test/fixtures/source-map/ |
D | enclosing-call-site.js | 21 const thrower = functionA constant 24 thrower()
|
D | enclosing-call-site-min.js | 1 …nD()},functionD=function(){if(0<Math.random())throw Error("an error!");},thrower=functionA;try{fun…
|
D | enclosing-call-site.js.map | 7 "names":["functionA","functionB","functionC","functionD","Math","random","Error","thrower","err"]
|
/third_party/boost/libs/exception/test/ |
D | throw_exception_test.cpp | 75 throw_fwd( void (*thrower)(int) ) in throw_fwd() 79 thrower(42); in throw_fwd()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
D | exception_safety_testing_test.cc | 193 auto thrower = Thrower(123); in TEST() 194 thrower.~Thrower(); in TEST() 202 auto thrower = Thrower(234); in TEST() 203 thrower.~Thrower(); in TEST() 212 auto thrower = Thrower(345); in TEST() 213 thrower.~Thrower(); in TEST() 221 auto thrower = Thrower(456); in TEST() 222 thrower.~Thrower(); in TEST()
|
/third_party/abseil-cpp/absl/base/ |
D | exception_safety_testing_test.cc | 193 auto thrower = Thrower(123); in TEST() 194 thrower.~Thrower(); in TEST() 202 auto thrower = Thrower(234); in TEST() 203 thrower.~Thrower(); in TEST() 212 auto thrower = Thrower(345); in TEST() 213 thrower.~Thrower(); in TEST() 221 auto thrower = Thrower(456); in TEST() 222 thrower.~Thrower(); in TEST()
|
/third_party/node/deps/npm/node_modules/util-promisify/test/ |
D | index.js | 165 const thrower = promisify(function(a, b, c, cb) { constant 169 thrower(1, 2, 3)
|
/third_party/node/test/message/ |
D | source_map_enabled_by_api.out | 17 …nD()},functionD=function(){if(0<Math.random())throw Error("an error!");},thrower=functionA;try{fun…
|
/third_party/node/src/api/ |
D | environment.cc | 594 Local<Value> thrower = in InitializeContextRuntime() local 596 PropertyDescriptor descriptor(thrower, thrower); in InitializeContextRuntime()
|
/third_party/node/deps/npm/node_modules/bluebird/js/browser/ |
D | bluebird.js | 1614 function thrower() { 1628 thrower, undefined, undefined, {reason: reason}, undefined); 1634 undefined, thrower, undefined, {reason: reason}, undefined); 5057 function thrower(e) { 5085 return thrower(e); 5088 return maybePromise._then(iterator, thrower, 5375 function thrower(r) { 5619 thrower: thrower, property
|
D | bluebird.core.js | 1467 function thrower() { 1481 thrower, undefined, undefined, {reason: reason}, undefined); 1487 undefined, thrower, undefined, {reason: reason}, undefined); 3533 function thrower(r) { 3777 thrower: thrower, property
|
/third_party/jerryscript/jerry-core/ |
D | BUILD.gn | 104 "ecma/builtin-objects/ecma-builtin-type-error-thrower.c",
|