Home
last modified time | relevance | path

Searched refs:thrower (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/iostreams/test/
Dexecute_test.cpp65 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/
Doptional_exception_safety_test.cc146 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/
Doptional_exception_safety_test.cc146 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/
Dmemory_exception_safety_test.cc39 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/
Dmemory_exception_safety_test.cc39 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/
Dfixed_array_exception_safety_test.cc154 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/
Dfixed_array_exception_safety_test.cc154 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/
Dtest-stream2-readable-non-empty-end.js43 test.on('end', thrower);
44 function thrower() { function
63 test.removeListener('end', thrower);
Dtest-assert.js114 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 …]
Dtest-util-promisify.js175 const thrower = promisify(function(a, b, c, cb) { constant
179 thrower(1, 2, 3)
/third_party/node/deps/npm/node_modules/bluebird/js/release/
Ddirect_resolve.js6 function thrower() { function
20 thrower, undefined, undefined, {reason: reason}, undefined);
26 undefined, thrower, undefined, {reason: reason}, undefined);
Dusing.js11 function thrower(e) { function
39 return thrower(e);
42 return maybePromise._then(iterator, thrower,
Dutil.js101 function thrower(r) { function
345 thrower: thrower, property
/third_party/node/test/fixtures/source-map/
Denclosing-call-site.js21 const thrower = functionA constant
24 thrower()
Denclosing-call-site-min.js1 …nD()},functionD=function(){if(0<Math.random())throw Error("an error!");},thrower=functionA;try{fun…
Denclosing-call-site.js.map7 "names":["functionA","functionB","functionC","functionD","Math","random","Error","thrower","err"]
/third_party/boost/libs/exception/test/
Dthrow_exception_test.cpp75 throw_fwd( void (*thrower)(int) ) in throw_fwd()
79 thrower(42); in throw_fwd()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
Dexception_safety_testing_test.cc193 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/
Dexception_safety_testing_test.cc193 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/
Dindex.js165 const thrower = promisify(function(a, b, c, cb) { constant
169 thrower(1, 2, 3)
/third_party/node/test/message/
Dsource_map_enabled_by_api.out17 …nD()},functionD=function(){if(0<Math.random())throw Error("an error!");},thrower=functionA;try{fun…
/third_party/node/src/api/
Denvironment.cc594 Local<Value> thrower = in InitializeContextRuntime() local
596 PropertyDescriptor descriptor(thrower, thrower); in InitializeContextRuntime()
/third_party/node/deps/npm/node_modules/bluebird/js/browser/
Dbluebird.js1614 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
Dbluebird.core.js1467 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/
DBUILD.gn104 "ecma/builtin-objects/ecma-builtin-type-error-thrower.c",

12