Home
last modified time | relevance | path

Searched refs:__libcpp_debug_exception (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/src/
Ddebug.cpp45 throw __libcpp_debug_exception(info); in __libcpp_throw_debug_function()
51 struct __libcpp_debug_exception::__libcpp_debug_exception_imp {
56 __libcpp_debug_exception::__libcpp_debug_exception() _NOEXCEPT in __libcpp_debug_exception() function in __libcpp_debug_exception
60 __libcpp_debug_exception::__libcpp_debug_exception( in __libcpp_debug_exception() function in __libcpp_debug_exception
66 __libcpp_debug_exception::__libcpp_debug_exception( in __libcpp_debug_exception() function in __libcpp_debug_exception
67 __libcpp_debug_exception const& other) : __imp_(nullptr) { in __libcpp_debug_exception()
72 __libcpp_debug_exception::~__libcpp_debug_exception() _NOEXCEPT { in ~__libcpp_debug_exception()
77 const char* __libcpp_debug_exception::what() const _NOEXCEPT { in what()
/external/libcxx/include/
D__debug54 class _LIBCPP_EXCEPTION_ABI __libcpp_debug_exception;
84 /// an instance of __libcpp_debug_exception when called.
102 class _LIBCPP_EXCEPTION_ABI __libcpp_debug_exception : public exception {
104 __libcpp_debug_exception() _NOEXCEPT;
105 explicit __libcpp_debug_exception(__libcpp_debug_info const& __i);
106 __libcpp_debug_exception(__libcpp_debug_exception const&);
107 ~__libcpp_debug_exception() _NOEXCEPT;
/external/libcxx/test/libcxx/debug/
Ddebug_throw.pass.cpp33 } catch (std::__libcpp_debug_exception const&) {} in main()
38 std::__libcpp_debug_exception in main()
/external/libcxx/docs/DesignDocs/
DDebugMode.rst35 ``__libcpp_debug_exception`` instead of aborting. Additionally this macro
49 ``std::__libcpp_debug_exception``. Libc++ can be changed to use the throwing
62 } catch (std::__libcpp_debug_exception const&) {
/external/libcxx/test/libcxx/thread/futures/futures.promise/
Dset_exception.pass.cpp37 typedef std::__libcpp_debug_exception ExType; in main()
Dset_exception_at_thread_exit.pass.cpp37 typedef std::__libcpp_debug_exception ExType; in main()
/external/libcxx/test/libcxx/containers/sequences/array/array.zero/
Ddb_back.pass.cpp27 } catch (std::__libcpp_debug_exception const&) { in CheckDebugThrows()
Ddb_front.pass.cpp27 } catch (std::__libcpp_debug_exception const&) { in CheckDebugThrows()
Ddb_indexing.pass.cpp27 } catch (std::__libcpp_debug_exception const&) { in CheckDebugThrows()
/external/libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/
Diterator_db.pass.cpp32 using ExType = std::__libcpp_debug_exception; in main()