/netbsd-src/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/ |
H A D | catch_in_finally.d | 14 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 D | refcounted.d | 27 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 D | uninitialized_algorithms.h | 42 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 D | postblit.d | 247 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 D | ExceptionHandling.rst | 50 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 D | exception.d | 112 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 D | xml.d | 465 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 D | csv.d | 609 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 D | t_call_once2.sh | 119 } 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 D | construction.d | 72 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 D | xml.d | 468 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 D | exception.d | 497 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 D | csv.d | 723 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 D | ostream | 288 catch (...) 351 catch (...) 362 catch (...) 388 catch (...) 418 catch (...) 444 catch (...) 474 catch (...) 500 catch (...) 526 catch (...) 552 catch (...) [all …]
|
H A D | istream | 378 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 D | lib.d | 13 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 D | lib.d | 13 catch (Exception e) in collectException() 63 catch (Throwable) in runTests() 75 catch (Exception e) in runTestsImpl()
|
/netbsd-src/tests/lib/libc/sys/ |
H A D | t_sigaction.c | 82 catch(int sig __unused) in catch() function 99 sa.sa_handler = catch; in ATF_TC_BODY()
|
/netbsd-src/sbin/fsck_msdos/ |
H A D | main.c | 119 (void) signal(SIGINT, catch); in main() 121 (void) signal(SIGQUIT, catch); in main()
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
H A D | 2001-05-18-ExceptionHandling.txt | 68 } 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 D | WebAssemblyInstrControl.td | 148 // 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 D | vector.d | 335 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 D | randombytes.c | 106 } catch (e) { in randombytes_stir() 115 } catch (e) { in randombytes_stir()
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/config/ |
H A D | tree.ipp | 60 } 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 D | exception_ptr.h | 204 catch(...) in make_exception_ptr() 214 catch(...) in make_exception_ptr()
|