| /src/external/gpl3/gdb.old/dist/gdb/mi/ |
| mi-cmd-info.c | 24 /* Implement the "-info-ada-exceptions" GDB/MI command. */ 43 error (_("Usage: -info-ada-exceptions [REGEXP]")); 47 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp); local 50 exceptions.size (), 51 "ada-exceptions"); 56 for (const ada_exc_info &info : exceptions)
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| gdb2495.cc | 68 SimpleException exceptions; variable 75 exceptions.raise_signal (-1); 76 exceptions.no_throw_function (); 77 exceptions.throw_function_with_handler (); 78 exceptions.call_throw_function_handler (); 81 exceptions.throw_function (); 82 exceptions.call_throw_function_no_handler ();
|
| /src/external/gpl3/gdb/dist/gdb/mi/ |
| mi-cmd-info.c | 24 /* Implement the "-info-ada-exceptions" GDB/MI command. */ 43 error (_("Usage: -info-ada-exceptions [REGEXP]")); 47 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp); local 50 exceptions.size (), 51 "ada-exceptions"); 56 for (const ada_exc_info &info : exceptions)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| gdb2495.cc | 68 SimpleException exceptions; variable 75 exceptions.raise_signal (-1); 76 exceptions.no_throw_function (); 77 exceptions.throw_function_with_handler (); 78 exceptions.call_throw_function_handler (); 81 exceptions.throw_function (); 82 exceptions.call_throw_function_no_handler ();
|
| /src/external/gpl3/gcc/dist/libgfortran/config/ |
| fpu-glibc.h | 27 feenableexcept function in fenv.h to set individual exceptions 98 int exceptions = fegetexcept (); local 102 if (exceptions & FE_INVALID) res |= GFC_FPE_INVALID; 106 if (exceptions & FE_DENORMAL) res |= GFC_FPE_DENORMAL; 110 if (exceptions & FE_DIVBYZERO) res |= GFC_FPE_ZERO; 114 if (exceptions & FE_OVERFLOW) res |= GFC_FPE_OVERFLOW; 118 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; 122 if (exceptions & FE_INEXACT) res |= GFC_FPE_INEXACT;
|
| fpu-aarch64.h | 36 /* Exceptions */ 77 unsigned int fpcr, exceptions; local 81 exceptions = (fpcr >> FE_EXCEPT_SHIFT) & FE_ALL_EXCEPT; 83 if (exceptions & FE_INVALID) res |= GFC_FPE_INVALID; 84 if (exceptions & FE_DIVBYZERO) res |= GFC_FPE_ZERO; 85 if (exceptions & FE_OVERFLOW) res |= GFC_FPE_OVERFLOW; 86 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; 87 if (exceptions & FE_INEXACT) res |= GFC_FPE_INEXACT;
|
| /src/external/gpl3/gcc.old/dist/libgfortran/config/ |
| fpu-glibc.h | 27 feenableexcept function in fenv.h to set individual exceptions 98 int exceptions = fegetexcept (); local 102 if (exceptions & FE_INVALID) res |= GFC_FPE_INVALID; 106 if (exceptions & FE_DENORMAL) res |= GFC_FPE_DENORMAL; 110 if (exceptions & FE_DIVBYZERO) res |= GFC_FPE_ZERO; 114 if (exceptions & FE_OVERFLOW) res |= GFC_FPE_OVERFLOW; 118 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; 122 if (exceptions & FE_INEXACT) res |= GFC_FPE_INEXACT;
|
| fpu-aarch64.h | 36 /* Exceptions */ 77 unsigned int fpcr, exceptions; local 81 exceptions = (fpcr >> FE_EXCEPT_SHIFT) & FE_ALL_EXCEPT; 83 if (exceptions & FE_INVALID) res |= GFC_FPE_INVALID; 84 if (exceptions & FE_DIVBYZERO) res |= GFC_FPE_ZERO; 85 if (exceptions & FE_OVERFLOW) res |= GFC_FPE_OVERFLOW; 86 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; 87 if (exceptions & FE_INEXACT) res |= GFC_FPE_INEXACT;
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| v3nametest.c | 37 static const char *const exceptions[] = { variable 79 for (p = exceptions; *p; ++p)
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| v3nametest.c | 37 static const char *const exceptions[] = { variable 79 for (p = exceptions; *p; ++p)
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| v3nametest.c | 41 static const char *const exceptions[] = { variable 83 for (p = exceptions; *p; ++p)
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| basic_ios.h | 166 // exceptions(). Must only be called within a catch handler. 173 if (this->exceptions() & __state) 219 * @brief Throwing exceptions on errors. 220 * @return The current exceptions mask. 223 * of exceptions(iostate) for the meaning of the return value. 226 exceptions() const function in class:basic_ios 230 * @brief Throwing exceptions on errors. 231 * @param __except The new exceptions mask. 234 * exceptions mask for each stream; if a bit in the mask becomes set 238 * If the error flag is already set when the exceptions mask i 261 exceptions(iostate __except) function in class:basic_ios [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| basic_ios.h | 162 // exceptions(). 169 if (this->exceptions() & __state) 215 * @brief Throwing exceptions on errors. 216 * @return The current exceptions mask. 219 * of exceptions(iostate) for the meaning of the return value. 222 exceptions() const function in class:basic_ios 226 * @brief Throwing exceptions on errors. 227 * @param __except The new exceptions mask. 230 * exceptions mask for each stream; if a bit in the mask becomes set 234 * If the error flag is already set when the exceptions mask i 257 exceptions(iostate __except) function in class:basic_ios [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| eloop.c | 103 struct eloop_sock_table exceptions; member in struct:eloop_data 186 eloop.exceptions.type = EVENT_TYPE_EXCEPTION; 209 * Exceptions are always checked when using epoll, but I suppose it's 445 struct eloop_sock_table *exceptions, 492 * Exceptions are always checked when using poll, but I suppose it's 496 if (exceptions && exceptions->table) { 497 for (i = 0; i < exceptions->count; i++) { 502 fd = exceptions->table[i].sock; 554 struct eloop_sock_table *exceptions, [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| target.h | 96 bool exceptions; // set if catching C++ exceptions is supported member in struct:TargetCPP
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| read-debug-names.c | 333 std::vector<gdb_exception> exceptions; local 340 exceptions.push_back (std::move (exc)); 348 std::move (exceptions),
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| error.cc | 1691 tree exceptions; local 1700 /* Save the exceptions, in case t is a specialization and we are 1702 exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t)); 1801 dump_exception_spec (pp, exceptions, flags);
|
| /src/external/gpl3/gdb/dist/gdb/stubs/ |
| sh-stub.c | 832 Exceptions are vectored to the address stored at VBR + (exception_num * 4) 1327 exceptions (void) function
|
| /src/external/gpl3/gdb.old/dist/gdb/stubs/ |
| sh-stub.c | 832 Exceptions are vectored to the address stored at VBR + (exception_num * 4) 1327 exceptions (void) function
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| error.cc | 1750 tree exceptions; local 1759 /* Save the exceptions, in case t is a specialization and we are 1761 exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t)); 1862 dump_exception_spec (pp, exceptions, flags);
|
| /src/external/gpl2/groff/dist/src/roff/troff/ |
| env.cpp | 3375 dictionary exceptions; member in struct:hyphenation_language 3377 hyphenation_language(symbol nm) : name(nm), exceptions(501) {} 3398 // hyphenation exceptions 3438 tem = (unsigned char *)current_language->exceptions.lookup(symbol(buf), 3617 exceptions. 3825 = (unsigned char *)current_language->exceptions.lookup(buf); 3863 ¤t_language->exceptions);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| ada-lang.c | 23 #include "exceptions.h" 5579 to allow the user to specifically access the standard exceptions 11553 . catchpoints on Ada exceptions 11554 . catchpoints on unhandled Ada exceptions 11557 Exceptions raised during failed assertions, or unhandled exceptions 11558 could perfectly be caught with the general catchpoint on Ada exceptions. 11575 /* Ada's standard exceptions. 11584 from the list of standard exceptions (it made it a renaming of 11587 this list of standard exceptions. * 12775 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL); local 13150 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp); local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| ada-lang.c | 23 #include "exceptions.h" 5576 to allow the user to specifically access the standard exceptions 11564 . catchpoints on Ada exceptions 11565 . catchpoints on unhandled Ada exceptions 11568 Exceptions raised during failed assertions, or unhandled exceptions 11569 could perfectly be caught with the general catchpoint on Ada exceptions. 11586 /* Ada's standard exceptions. 11595 from the list of standard exceptions (it made it a renaming of 11598 this list of standard exceptions. * 12786 std::vector<ada_exc_info> exceptions = ada_exceptions_list (NULL); local 13159 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp); local [all...] |