HomeSort by: relevance | last modified time | path
    Searched refs:exception (Results 1 - 25 of 708) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
exception.h 0 // Exception Handling support header for -*- C++ -*-
18 // permissions described in the GCC Runtime Library Exception, version
22 // a copy of the GCC Runtime Library Exception along with this program;
26 /** @file bits/exception.h
56 * your own %exception classes, or use a different hierarchy, or to
59 class exception class
62 exception() _GLIBCXX_NOTHROW { }
63 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
65 exception(const exception&) = default
    [all...]
nested_exception.cc 16 // permissions described in the GCC Runtime Library Exception, version
20 // a copy of the GCC Runtime Library Exception along with this program;
24 #include <exception>
eh_exception.cc 1 // -*- C++ -*- std::exception implementation.
17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
26 #include "exception"
29 std::exception::~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT { }
40 std::exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT
45 return "std::exception";
60 _ZGTtNKSt9exceptionD1Ev(const std::exception*)
64 _ZGTtNKSt9exception4whatEv(const std::exception* that
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
exception.h 0 // Exception Handling support header for -*- C++ -*-
18 // permissions described in the GCC Runtime Library Exception, version
22 // a copy of the GCC Runtime Library Exception along with this program;
26 /** @file bits/exception.h
58 * your own %exception classes, or use a different hierarchy, or to
61 class exception class in namespace:std
64 exception() _GLIBCXX_NOTHROW { }
65 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
67 exception(const exception&) = default
    [all...]
nested_exception.cc 16 // permissions described in the GCC Runtime Library Exception, version
20 // a copy of the GCC Runtime Library Exception along with this program;
24 #include <exception>
eh_exception.cc 1 // -*- C++ -*- std::exception implementation.
17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
26 #include "exception"
29 std::exception::~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT { }
40 std::exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT
45 return "std::exception";
60 _ZGTtNKSt9exceptionD1Ev(const std::exception*)
64 _ZGTtNKSt9exception4whatEv(const std::exception* that
    [all...]
  /src/external/bsd/libc++/dist/libcxxrt/src/
stdexcept.cc 34 exception::exception() throw() {} function in class:std::exception
35 exception::~exception() {}
36 exception::exception(const exception&) throw() {} function in class:std::exception
37 exception& exception::operator=(const exception&) throw(
    [all...]
stdexcept.h 35 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. Thrown by the __cxa_bad_cast() helper function
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/objc/
objc-exception.h 18 permissions described in the GCC Runtime Library Exception, version
22 a copy of the GCC Runtime Library Exception along with this program;
36 /* 'objc_exception_throw' throws the exception 'exception', which is
37 an exception object.
40 compiler: an Objective-C "@throw exception;" statement gets
42 (exception);".
45 exception. By default, @catch (MyClass object) will catch all
46 exception objects that are of class MyClass or of a subclass of
47 MyClass; if the exception object is 'nil', then the exception ca
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
objc-exception.h 18 permissions described in the GCC Runtime Library Exception, version
22 a copy of the GCC Runtime Library Exception along with this program;
36 /* 'objc_exception_throw' throws the exception 'exception', which is
37 an exception object.
40 compiler: an Objective-C "@throw exception;" statement gets
42 (exception);".
45 exception. By default, @catch (MyClass object) will catch all
46 exception objects that are of class MyClass or of a subclass of
47 MyClass; if the exception object is 'nil', then the exception ca
    [all...]
  /src/external/mit/isl/dist/include/isl/
cpp.h 82 class exception : public std::exception { class in namespace:isl
86 inline exception(const char *what_arg, const char *msg,
89 exception() {} function in class:isl::exception
90 exception(const char *what_arg) { function in class:isl::exception
103 * will be included in the exception thrown from inside the bindings.
106 /* Wrapper for throwing an exception with the given message.
114 /* Create an exception of a type described by "what_arg", with
121 exception::exception(const char *what_arg, const char *msg, const char *file function in class:isl::exception
223 class exception { class in namespace:isl
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
common-exceptions.cc 0 /* Exception (throw catch) mechanism, for GDB, the GNU debugger.
30 /* The catch code threw an exception. */
44 /* Jump buffer pointing back at the exception handler. */
46 /* Status buffer belonging to the exception handler. */
47 struct gdb_exception exception; member in struct:catcher
116 exception. The caller analyses the func return
129 exceptions_state_mc_catch (struct gdb_exception *exception,
132 *exception = std::move (catchers.front ().exception);
135 if (exception->reason < 0
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
common-exceptions.cc 0 /* Exception (throw catch) mechanism, for GDB, the GNU debugger.
30 /* The catch code threw an exception. */
44 /* Jump buffer pointing back at the exception handler. */
46 /* Status buffer belonging to the exception handler. */
47 struct gdb_exception exception; member in struct:catcher
116 exception. The caller analyses the func return
129 exceptions_state_mc_catch (struct gdb_exception *exception,
132 *exception = std::move (catchers.front ().exception);
135 if (exception->reason < 0
    [all...]
  /src/sys/sys/
userret.h 51 int exception; local
56 exception = l->l_cpu->ci_want_resched | (l->l_flag & LW_USERRET);
58 if (__predict_false(exception)) {
  /src/lib/libm/src/
s_matherr.c 22 matherr(struct exception *x)
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.betterc/
test19416.d 5 import core.exception : onOutOfMemoryError;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdcpp/
typeinfo.d 18 import core.stdcpp.exception;
42 class bad_cast : exception
52 class bad_typeid : exception
64 import core.stdcpp.exception;
91 class bad_cast : exception
98 class bad_typeid : exception
107 import core.stdcpp.exception;
143 class bad_cast : exception
151 class bad_typeid : exception
161 import core.stdcpp.exception;
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Bin/
j_stat.d 60 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;
  /src/external/cddl/dtracetoolkit/dist/Java/
j_stat.d 60 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;
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.allocations/
alloc_from_assert.d 1 import core.exception;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/
info_exc.exp 53 foreach cmd {exception handlers} {
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/
info_exc.exp 53 foreach cmd {exception handlers} {
  /src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
Test.cxx 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
26 } catch (const std::exception& E) {
29 printf("Unknown exception\n");
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 exception Error of string
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/irreader/
llvm_irreader.ml 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 exception Error of string

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>