Searched refs:exception (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-9.3-release/contrib/libstdc++/libsupc++/
H A Deh_exception.cc1 // -*- C++ -*- std::exception implementation.
23 // As a special exception, you may use this file as part of a free software
28 // the GNU General Public License. This exception does not however
33 #include "exception"
36 std::exception::~exception() throw() { }
41 std::exception::what() const throw()
46 return "std::exception";
H A Dvterminate.cc21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
34 #include <exception>
45 // more information about the terminating exception (if any) on
57 // Make sure there was an exception; terminate is also called for an
58 // attempt to rethrow when there is no suitable exception.
81 // If the exception is derived from std::exception, we can
85 catch (exception &exc)
96 fputs("terminate called without an active exception\
[all...]
H A Dguard.cc20 // As a special exception, you may use this file as part of a free software
25 // the GNU General Public License. This exception does not however
34 #include <exception>
100 // as well check for this situation and throw an exception.
103 class recursive_init_error: public std::exception
153 // Simple wrapper for exception safety.
/freebsd-9.3-release/contrib/libcxxrt/
H A Dstdexcept.cc34 exception::exception() throw() {} function in class:std::exception
35 exception::~exception() {}
36 exception::exception(const exception&) throw() {} argument
37 exception& exception::operator=(const exception argument
[all...]
H A Dstdexcept.h35 class exception class in namespace:std
38 exception() throw();
39 exception(const exception&) throw();
40 exception& operator=(const exception&) throw();
41 virtual ~exception();
47 * Bad allocation exception. Thrown by ::operator new() if it fails.
49 class bad_alloc: public exception
60 * Bad cast exception
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/config/
H A Dnm-gnu.h27 #include <mach/exception.h>
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_ios.h21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
44 #include <exception> // For ios_base::failure
H A Dstd_stdexcept.h1 // Standard exception classes -*- C++ -*-
21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
43 #include <exception>
51 * @brief One of two subclasses of exception.
53 class logic_error : public exception
105 * @brief One of two subclasses of exception.
107 class runtime_error : public exception
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dj_stat.d60 execs = threads = methods = objnew = cload = gc = exception = 0;
122 exception++;
133 oalloc / interval, cload / interval, exception / interval,
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Java/
H A Dj_stat.d60 execs = threads = methods = objnew = cload = gc = exception = 0;
122 exception++;
133 oalloc / interval, cload / interval, exception / interval,
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dmatherr.c31 struct exception *exc;
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dexc_request.defs29 * MiG definitions file for Mach exception interface (request half).
49 exception : integer_t;
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dstdexcept.cc21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
40 : exception(), _M_msg(__arg) { }
61 : exception(), _M_msg(__arg) { }
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dconcurrence.h22 // As a special exception, you may use this file as part of a free software
27 // the GNU General Public License. This exception does not however
40 #include <exception>
69 // exception. No stdexception classes, no use of std::string.
70 class __concurrence_lock_error : public std::exception
78 class __concurrence_unlock_error : public std::exception
/freebsd-9.3-release/lib/libcxxrt/
H A DMakefile17 exception.cc\
/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A DdecLibrary.c44 extern void __dfp_raise (int exception __attribute__ ((unused)));
88 __dfp_raise (int exception __attribute__ ((unused)))
/freebsd-9.3-release/contrib/libstdc++/include/precompiled/
H A Dstdc++.h21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
59 #include <exception>
H A Dextc++.h21 // As a special exception, you may use this file as part of a free software
26 // the GNU General Public License. This exception does not however
61 #include <ext/pb_ds/exception.hpp>
/freebsd-9.3-release/contrib/gcc/config/rs6000/
H A Ddarwin-fallback.c268 uint32_t exception; member in struct:gcc_mcontext32
291 uint32_t exception; member in struct:gcc_mcontext64
384 /* Sometimes, srr0 points to the instruction that caused the exception,
387 if (m64->exception == 3 || m64->exception == 4
388 || m64->exception == 6
389 || (m64->exception == 7 && !(m64->srr1 & 0x10000)))
413 /* Sometimes, srr0 points to the instruction that caused the exception,
416 if (m->exception == 3 || m->exception
[all...]
/freebsd-9.3-release/bin/sh/
H A Derror.h39 * jump to when an exception occurs, and the global variable exception
40 * contains a code identifying the exception. To implement nested
41 * exception handlers, the user should save the value of handler on entry
54 extern volatile sig_atomic_t exception;
H A Derror.c64 volatile sig_atomic_t exception; variable
73 * Called to raise an exception. Since C doesn't include exceptions, we
74 * just do a longjmp to the exception handler. The type of exception is
75 * stored in the global variable "exception".
77 * Interrupts are disabled; they should be reenabled when the exception is
87 exception = e;
158 * Exverror is called to raise the error exception. If the first argument
160 * formatting. It then raises the error exception.
168 * in child processes, and if an error exception ca
[all...]
H A Dmain.c90 * exception occurs. When an exception occurs the variable "state"
105 switch (exception) {
119 exception == EXEXIT)
122 if (exception == EXINT)
/freebsd-9.3-release/contrib/libc++/src/
H A Dexception.cpp1 //===------------------------ exception.cpp -------------------------------===//
12 #include "exception"
99 // handler should not throw exception
100 printf("terminate_handler unexpectedly threw an exception\n");
128 exception::~exception() _NOEXCEPT
132 const char* exception::what() const _NOEXCEPT
134 return "std::exception";
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dmake_graphs.py10 class exception: class in inherits:
30 raise exception
141 raise exception
/freebsd-9.3-release/lib/libc++/
H A DMakefile19 exception.cpp\
46 exception.cc\
118 exception\

Completed in 127 milliseconds

1234