Home
last modified time | relevance | path

Searched refs:catch (Results 1 – 25 of 785) sorted by relevance

12345678910>>...32

/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/
H A Dcatch_in_finally.d14 catch (MyException) in throw_catch()
17 catch (Exception) in throw_catch()
37 catch (Exception e) in test1()
64 catch(Exception e) in test2()
92 catch(Exception e) in test3()
112 catch (MyException) in test4()
116 catch (Exception) in test4()
133 catch(Exception e) in test4()
156 catch(Exception e) in test5()
175 catch (Exception e) in test5()
H A Drefcounted.d27 catch (E e) in main()
39 catch (E e) in main()
51 catch (E e) in main()
63 catch (E first) in main()
69 catch (E second) in main()
75 catch (E third) in main()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Duninitialized_algorithms.h42 catch (...) in uninitialized_copy()
66 catch (...) in uninitialized_copy_n()
90 catch (...) in uninitialized_fill()
113 catch (...) in uninitialized_fill_n()
151 } catch (...) { in uninitialized_default_construct()
170 } catch (...) { in uninitialized_default_construct_n()
189 } catch (...) { in uninitialized_value_construct()
208 } catch (...) { in uninitialized_value_construct_n()
228 } catch (...) { in uninitialized_move()
248 } catch (...) { in uninitialized_move_n()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dpostblit.d247 catch (FailedPostblitException) {} in catch() function
248 catch (Exception) assert(false);
254 catch (FailedPostblitException) {} in catch() function
255 catch (Exception) assert(false);
263 catch (FailedPostblitException) {} in catch() function
264 catch (Exception) assert(false);
270 catch (FailedPostblitException) {} in catch() function
271 catch (Exception) assert(false);
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DExceptionHandling.rst50 For each function which does exception processing --- be it ``try``/``catch``
108 A landing pad corresponds roughly to the code found in the ``catch`` portion of
109 a ``try``/``catch`` sequence. When execution resumes at a landing pad, it
111 *type* of exception thrown. The selector is then used to determine which *catch*
118 ``throw`` and ``try``/``catch`` statements. In this section we will describe the
157 structure reference and then proceeds to select the catch block that corresponds
166 function to be used for this ``try``/``catch`` sequence in the parent
168 *catch*, and *filter* clauses. The exception is tested against the clauses
171 - ``catch <type> @ExcType``
179 should always be entered. This is used for C++ catch-all blocks ("``catch
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dexception.d112 catch (T t) in catch() function
162 catch (AssertError) assert(0);
168 catch (AssertError) assert(0);
174 catch (AssertError) assert(0);
180 catch (AssertError) assert(0);
189 catch (AssertError) thrown = true;
200 catch (AssertError) thrown = true;
211 catch (AssertError) thrown = true;
223 catch (AssertError) thrown = true;
256 catch (T)
[all …]
H A Dxml.d465 catch (Err e) in catch() function
494 catch (DecodeException e) { b = true; } in assertNot()
1013 catch (Err e) { assert(false,"Invalid tag name:" ~ e.toString()); } in invariant()
1019 catch (Err e) in invariant()
1105 catch (XMLException e) in this()
1715 catch (CheckException e) in this()
2180 catch (Err e) { fail(e); } in checkMisc()
2192 catch (Err e) { fail(e); } in checkDocument()
2277 try { checkReference(s); } catch (Err e) { fail(e); } in checkAttValue()
2303 try { checkLiteral("<!--",s); } catch (Err e) { fail(e); } in checkComment()
[all …]
H A Dcsv.d609 catch (HeaderMismatchException e) in catch() function
679 catch (IncompleteCellException ice) in catch() function
1049 catch (ConvException e) in prime()
1094 catch (ConvException e) in prime()
1289 catch (IncompleteCellException ice) in prime()
1296 catch (ConvException e) in prime()
1311 catch (IncompleteCellException ice) in prime()
1337 catch (ConvException e) in prime()
1609 catch (IncompleteCellException ice) in catch() function
1623 catch (IncompleteCellException ice) in catch() function
/netbsd-src/tests/usr.bin/c++/
H A Dt_call_once2.sh119 } catch (...) {
151 } catch (...) {
195 } catch (...) {
232 } catch (...) {
286 } catch (...) {
329 } catch (...) {
384 } catch (...) {
425 } catch (...) {
468 } catch (...) {
508 } catch (...) {
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/
H A Dconstruction.d72 catch (Exception o) in catch() function
157 catch (Exception) in catch() function
182 catch (Exception) in catch() function
212 catch (Exception o) in catch() function
288 catch (Exception) in catch() function
315 catch (Exception) in catch() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dxml.d468 catch (Err e) in catch() function
497 catch (DecodeException e) { b = true; } in assertNot()
1021 catch (Err e) { assert(false,"Invalid tag name:" ~ e.toString()); } in invariant()
1027 catch (Err e) in invariant()
1113 catch (XMLException e) in this()
1724 catch (CheckException e) in this()
2189 catch (Err e) { fail(e); } in checkMisc()
2201 catch (Err e) { fail(e); } in checkDocument()
2286 try { checkReference(s); } catch (Err e) { fail(e); } in checkAttValue()
2312 try { checkLiteral("<!--",s); } catch (Err e) { fail(e); } in checkComment()
[all …]
H A Dexception.d497 catch (Exception e) in catch() function
651 catch anything that is neither an `Exception` nor a type derived from
657 T = The type of exception to catch.
667 catch (T e) in catch() function
699 catch anything that is neither an `Exception` nor a type derived from
705 T = The type of exception to catch.
714 catch (T t) in catch() function
740 catch anything that is neither an `Exception` nor a type derived from
746 T = The type of exception to catch.
760 catch (T e)
[all …]
H A Dcsv.d723 catch (HeaderMismatchException e) in catch() function
793 catch (IncompleteCellException ice) in catch() function
1185 catch (ConvException e) in prime()
1230 catch (ConvException e) in prime()
1444 catch (IncompleteCellException ice) in prime()
1451 catch (ConvException e) in prime()
1466 catch (IncompleteCellException ice) in prime()
1492 catch (ConvException e) in prime()
1765 catch (IncompleteCellException ice) in catch() function
1779 catch (IncompleteCellException ice) in catch() function
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dostream288 catch (...)
351 catch (...)
362 catch (...)
388 catch (...)
418 catch (...)
444 catch (...)
474 catch (...)
500 catch (...)
526 catch (...)
552 catch (...)
[all …]
H A Distream378 catch (...)
502 catch (...)
566 catch (...)
660 catch (...)
725 catch (...)
769 catch (...)
817 catch (...)
876 catch (...)
928 catch (...)
996 catch (...)
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.shared/
H A Dlib.d13 catch (Exception e) in collectException()
63 catch (Throwable) in runTests()
75 catch (Exception e) in runTestsImpl()
/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.shared/
H A Dlib.d13 catch (Exception e) in collectException()
63 catch (Throwable) in runTests()
75 catch (Exception e) in runTestsImpl()
/netbsd-src/tests/lib/libc/sys/
H A Dt_sigaction.c82 catch(int sig __unused) in catch() function
99 sa.sa_handler = catch; in ATF_TC_BODY()
/netbsd-src/sbin/fsck_msdos/
H A Dmain.c119 (void) signal(SIGINT, catch); in main()
121 (void) signal(SIGQUIT, catch); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/
H A D2001-05-18-ExceptionHandling.txt68 } catch (int) {
71 } catch (double) {
133 d->~D(); // destruct D as it goes out of scope when entering catch clauses
155 ...int Stuff... // The action to perform from the catch block
158 ...double Stuff... // The action to perform from the catch block
159 goto TryCleanup // This catch block rethrows the exception
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrControl.td148 // Catching an exception: catch / catch_all
150 // Currently 'catch' can only extract an i32, which is sufficient for C++
151 // support, but according to the spec 'catch' can extract any number of values
157 "catch \t$dst, $tag", "catch \t$tag", 0x07>;
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/
H A Dvector.d335 catch (Throwable e) in vector()
362 catch (Throwable e) in vector()
369 catch (Throwable e) in vector()
395 catch (Throwable e) in vector()
402 catch (Throwable e) in vector()
532 catch (Throwable e) in vector()
564 catch (Throwable e) in vector()
608 catch (Throwable e) in vector()
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/
H A Drandombytes.c106 } catch (e) { in randombytes_stir()
115 } catch (e) { in randombytes_stir()
/netbsd-src/external/bsd/kyua-cli/dist/utils/config/
H A Dtree.ipp60 } catch (const error& e) {
88 } catch (const std::bad_cast& unused_error) {
116 } catch (const std::bad_cast& unused_error) {
142 } catch (const std::bad_cast& unused_error) {
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dexception_ptr.h204 catch(...) in make_exception_ptr()
214 catch(...) in make_exception_ptr()

12345678910>>...32