Home
last modified time | relevance | path

Searched refs:current_exception (Results 1 – 25 of 25) sorted by relevance

/external/libcxx/test/std/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp36 std::exception_ptr p = std::current_exception(); in main()
63 std::exception_ptr p = std::current_exception(); in main()
66 p2 = std::current_exception(); in main()
83 std::exception_ptr p = std::current_exception(); in main()
86 p2 = std::current_exception(); in main()
103 std::exception_ptr p = std::current_exception(); in main()
106 p2 = std::current_exception(); in main()
150 std::exception_ptr p = std::current_exception(); in main()
183 std::exception_ptr p = std::current_exception(); in main()
212 std::exception_ptr p = std::current_exception(); in main()
[all …]
Drethrow_exception.pass.cpp40 p = std::current_exception(); in main()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/subscriptions/
Dobserver.cpp48 scrbResult.on_error(rxu::current_exception());
146 dob.on_error(rxu::current_exception());
150 so.on_error(rxu::current_exception());
154 dob.on_error(rxu::current_exception());
158 so.on_error(rxu::current_exception());
Dcoroutine.cpp33 messages.push_back(on.error(w.clock(), rxu::current_exception())); in __anon34a4693b0102()
94 messages.push_back(on.error(w.clock(), rxu::current_exception())); in __anon34a4693b0202()
/external/catch2/include/internal/
Dcatch_exception_translator_registry.cpp47 if (std::current_exception() == nullptr) { in translateActiveException()
54 std::rethrow_exception(std::current_exception()); in translateActiveException()
72 std::rethrow_exception(std::current_exception()); in tryTranslators()
Dcatch_registry_hub.cpp61 m_exceptionRegistry.add(std::current_exception()); in registerStartupException()
Dcatch_interfaces_exception.h51 std::rethrow_exception(std::current_exception()); in translate()
/external/libcxx/src/support/runtime/
Dexception_pointer_cxxabi.ipp39 : __ptr_(current_exception())
56 exception_ptr current_exception() _NOEXCEPT
Dexception_pointer_unimplemented.ipp39 : __ptr_(current_exception())
65 exception_ptr current_exception() _NOEXCEPT
Dexception_pointer_msvc.ipp67 exception_ptr current_exception() _NOEXCEPT {
76 nested_exception::nested_exception() _NOEXCEPT : __ptr_(current_exception()) {}
Dexception_pointer_glibcxx.ipp58 : __ptr_(current_exception())
/external/libcxx/include/
Dexception56 exception_ptr current_exception() noexcept;
135 _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
162 friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
177 return current_exception();
218 _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
Dfuture896 this->set_exception(current_exception());
944 this->set_exception(current_exception());
991 this->set_exception(current_exception());
1047 this->set_exception(current_exception());
2094 __p_.set_exception(current_exception());
2116 __p_.set_exception_at_thread_exit(current_exception());
2224 __p_.set_exception(current_exception());
2247 __p_.set_exception_at_thread_exit(current_exception());
/external/Reactive-Extensions/RxCpp/Rx/v2/test/
Dtest.cpp5 return current_exception() != nullptr; in uncaught_exception()
Dtest.h5 return current_exception() != nullptr; in uncaught_exception()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dlift.cpp37 dest.on_error(rxu::current_exception()); in on_next()
251 … RXCPP_TRY {pass = predicate(n);} RXCPP_CATCH(...){dest.on_error(rxu::current_exception());}; in __anon3f4dc8d90602()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
Drx_windows_user.h75 sub.on_error(std::current_exception()); in message()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-util.hpp935 std::rethrow_exception(std::current_exception()); in rethrow_current_exception()
943 inline error_ptr current_exception() { in current_exception() function
945 return std::current_exception(); in current_exception()
Drx-observer.hpp646 c(rxu::current_exception()); in on_exception()
658 s.on_error(rxu::current_exception()); in on_exception()
Drx-observable.hpp440 o->on_error(rxu::make_error_ptr(rxu::current_exception())); in subscribe()
Drx-subscriber.hpp57 auto ex = rxu::current_exception(); in operator ()()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/subjects/
Drx-synchronize.hpp78 destination.on_error(rxu::current_exception()); in ensure_processing()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-observe_on.hpp156 destination.on_error(rxu::current_exception()); in ensure_processing()
/external/catch2/single_include/catch2/
Dcatch.hpp2699 std::rethrow_exception(std::current_exception()); in translate()
8593 if (std::current_exception() == nullptr) { in translateActiveException()
8600 std::rethrow_exception(std::current_exception()); in translateActiveException()
8618 std::rethrow_exception(std::current_exception()); in tryTranslators()
10158 m_exceptionRegistry.add(std::current_exception()); in registerStartupException()
/external/catch2/docs/
Drelease-notes.md89 * Removed unreachable mentions `std::current_exception`, `std::rethrow_exception` in no-exceptions …