Home
last modified time | relevance | path

Searched refs:exception_ptr (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/src/
Dexception.cpp141 exception_ptr::~exception_ptr() _NOEXCEPT in ~exception_ptr()
146 #warning exception_ptr not yet implemented in ~exception_ptr()
151 exception_ptr::exception_ptr(const exception_ptr& other) _NOEXCEPT in exception_ptr() function in std::exception_ptr
157 #warning exception_ptr not yet implemented in exception_ptr()
162 exception_ptr& exception_ptr::operator=(const exception_ptr& other) _NOEXCEPT in operator =()
173 #warning exception_ptr not yet implemented in operator =()
197 exception_ptr current_exception() _NOEXCEPT in current_exception()
203 exception_ptr ptr; in current_exception()
207 #warning exception_ptr not yet implemented in current_exception()
213 void rethrow_exception(exception_ptr p) in rethrow_exception()
[all …]
Dfuture.cpp99 __assoc_sub_state::set_exception(exception_ptr __p) in set_exception()
113 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit()
239 promise<void>::set_exception(exception_ptr __p) in set_exception()
259 promise<void>::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dexception53 typedef unspecified exception_ptr;
55 exception_ptr current_exception() noexcept;
56 void rethrow_exception [[noreturn]] (exception_ptr p);
57 template<class E> exception_ptr make_exception_ptr(E e) noexcept;
69 exception_ptr nested_ptr() const noexcept;
119 class _LIBCPP_VISIBLE exception_ptr;
121 exception_ptr current_exception() _NOEXCEPT;
122 _LIBCPP_NORETURN void rethrow_exception(exception_ptr);
124 class _LIBCPP_VISIBLE exception_ptr
128 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
[all …]
Dfuture80 void set_exception(exception_ptr p);
85 void set_exception_at_thread_exit(exception_ptr p);
109 void set_exception(exception_ptr p);
113 void set_exception_at_thread_exit(exception_ptr p);
137 void set_exception(exception_ptr p);
141 void set_exception_at_thread_exit(exception_ptr p);
449 exception_ptr __exception_;
491 void set_exception(exception_ptr __p);
492 void set_exception_at_thread_exit(exception_ptr __p);
1327 void set_exception(exception_ptr __p);
[all …]
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp31 std::exception_ptr p = std::current_exception(); in main()
49 std::exception_ptr p2; in main()
58 std::exception_ptr p = std::current_exception(); in main()
69 std::exception_ptr p2; in main()
78 std::exception_ptr p = std::current_exception(); in main()
89 std::exception_ptr p2; in main()
98 std::exception_ptr p = std::current_exception(); in main()
145 std::exception_ptr p = std::current_exception(); in main()
178 std::exception_ptr p = std::current_exception(); in main()
207 std::exception_ptr p = std::current_exception(); in main()
[all …]
Dexception_ptr.pass.cpp21 std::exception_ptr p; in main()
23 std::exception_ptr p2 = p; in main()
30 std::exception_ptr p3 = nullptr; in main()
Dmake_exception_ptr.pass.cpp32 std::exception_ptr p = std::make_exception_ptr(A(5)); in main()
Drethrow_exception.pass.cpp32 std::exception_ptr p; in main()