Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dfuture.cc76 { _GLIBCXX_THROW_OR_ABORT(future_error(make_error_code(future_errc(__i)))); } in __throw_future_error()
81 future_error::~future_error() noexcept { } in ~future_error()
84 future_error::what() const noexcept { return logic_error::what(); } in what()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dfuture.cc86 { _GLIBCXX_THROW_OR_ABORT(future_error(make_error_code(future_errc(__i)))); } in __throw_future_error()
91 future_error::~future_error() noexcept { } in ~future_error()
94 future_error::what() const noexcept { return logic_error::what(); } in what()
/netbsd-src/external/apache2/llvm/dist/libcxx/src/
H A Dfuture.cpp74 future_error::future_error(error_code __ec) in future_error() function in future_error
80 future_error::~future_error() noexcept in ~future_error()
211 future_error(make_error_code(future_errc::broken_promise)) in ~promise()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dfuture47 class future_error
51 future_error(error_code ec); // exposition only
52 explicit future_error(future_errc); // C++17
499 class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_FUTURE_ERROR future_error
504 future_error(error_code __ec);
509 future_error(const future_error&) _NOEXCEPT = default;
510 virtual ~future_error() _NOEXCEPT;
520 throw future_error(make_error_code(_Ev));
1341 future_error(make_error_code(future_errc::broken_promise))
1484 future_error(make_error_code(future_errc::broken_promise))
H A D__availability105 // This controls the availability of the std::future_error exception.
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dfuture96 class future_error : public logic_error
100 future_error(future_errc __errc)
101 : future_error(std::make_error_code(__errc))
104 virtual ~future_error() noexcept;
114 future_error(error_code __ec)
115 : logic_error("std::future_error: " + __ec.message()), _M_code(__ec)
449 make_exception_ptr(future_error(future_errc::broken_promise));
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dfuture106 class future_error : public logic_error
110 future_error(future_errc __errc)
111 : future_error(std::make_error_code(__errc))
114 virtual ~future_error() noexcept;
124 future_error(error_code __ec)
125 : logic_error("std::future_error: " + __ec.message()), _M_code(__ec)
463 make_exception_ptr(future_error(future_errc::broken_promise));
/netbsd-src/external/apache2/llvm/dist/libcxx/docs/
H A DCxx1zStatusPaperStatus.csv89 "`P0517R0 <https://wg21.link/P0517R0>`__","LWG","Make future_error Constructible","Issaquah","|Comp…
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20154367 * include/std/future (future_error(error_code)): Construct base
4369 * src/c++11/future.cc (future_error::what()): Do not call c_str() on
H A DChangeLog-2016951 * include/std/future (future_error): Fix public typo to private.
955 * include/std/future (future_error): Make existing constructor