Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/src/
H A Dfuture.cpp56 future_error::future_error(error_code __ec) : logic_error(__ec.message()), __ec_(__ec) {} in future_error() function in future_error
58 future_error::~future_error() noexcept {} in ~future_error()
147 __state_->set_exception(make_exception_ptr(future_error(future_errc::broken_promise))); in ~promise()
/src/contrib/llvm-project/libcxx/modules/std/
H A Dfuture.inc33 // [futures.future.error], class future_error
34 using std::future_error;
/src/contrib/llvm-project/libcxx/include/
H A Dfuture47 class future_error : public logic_error {
49 explicit future_error(future_errc e); // since C++17
476 class _LIBCPP_EXPORTED_FROM_ABI future_error : public logic_error {
479 future_error(error_code);
486 …_LIBCPP_HIDE_FROM_ABI explicit future_error(future_errc __ec) : future_error(std::make_error_code(…
491 _LIBCPP_HIDE_FROM_ABI future_error(const future_error&) _NOEXCEPT = default;
492 ~future_error() _NOEXCEPT override;
495 // Declared above std::future_error
498 throw future_error(make_error_code(__ev));
501 _LIBCPP_VERBOSE_ABORT("future_error was thrown in -fno-exceptions mode");
[all …]
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1394 SYMBOL(future_error, std::, <future>)