HomeSort by relevance Sort by last modified time
    Searched full:exception_ptr (Results 26 - 50 of 189) sorted by null

12 3 4 5 6 7 8

  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
exception 54 typedef unspecified exception_ptr;
56 exception_ptr current_exception() noexcept;
57 void rethrow_exception [[noreturn]] (exception_ptr p);
58 template<class E> exception_ptr make_exception_ptr(E e) noexcept;
70 exception_ptr nested_ptr() const noexcept;
132 class _LIBCPP_TYPE_VIS exception_ptr;
134 _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
135 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
137 class _LIBCPP_TYPE_VIS exception_ptr
141 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {
    [all...]
  /external/libcxx/test/std/language.support/support.exception/propagation/
exception_ptr.pass.cpp 12 // typedef unspecified exception_ptr;
14 // exception_ptr shall satisfy the requirements of NullablePointer.
21 std::exception_ptr p;
23 std::exception_ptr p2 = p;
30 std::exception_ptr p3 = nullptr;
current_exception.pass.cpp 10 // This test needs to be rewritten for the Windows exception_ptr semantics
11 // which copy the exception each time the exception_ptr is copied.
17 // exception_ptr current_exception();
36 std::exception_ptr p = std::current_exception();
54 std::exception_ptr p2;
63 std::exception_ptr p = std::current_exception();
74 std::exception_ptr p2;
83 std::exception_ptr p = std::current_exception();
94 std::exception_ptr p2;
103 std::exception_ptr p = std::current_exception()
    [all...]
make_exception_ptr.pass.cpp 13 // template<class E> exception_ptr make_exception_ptr(E e);
33 std::exception_ptr p = std::make_exception_ptr(A(5));
44 // On Windows exception_ptr copies the exception
rethrow_exception.pass.cpp 13 // void rethrow_exception [[noreturn]] (exception_ptr p);
33 std::exception_ptr p;
52 // On Windows the exception_ptr copies the exception
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.exception/propagation/
exception_ptr.pass.cpp 12 // typedef unspecified exception_ptr;
14 // exception_ptr shall satisfy the requirements of NullablePointer.
21 std::exception_ptr p;
23 std::exception_ptr p2 = p;
30 std::exception_ptr p3 = nullptr;
current_exception.pass.cpp 10 // This test needs to be rewritten for the Windows exception_ptr semantics
11 // which copy the exception each time the exception_ptr is copied.
17 // exception_ptr current_exception();
36 std::exception_ptr p = std::current_exception();
54 std::exception_ptr p2;
63 std::exception_ptr p = std::current_exception();
74 std::exception_ptr p2;
83 std::exception_ptr p = std::current_exception();
94 std::exception_ptr p2;
103 std::exception_ptr p = std::current_exception()
    [all...]
make_exception_ptr.pass.cpp 13 // template<class E> exception_ptr make_exception_ptr(E e);
33 std::exception_ptr p = std::make_exception_ptr(A(5));
44 // On Windows exception_ptr copies the exception
rethrow_exception.pass.cpp 13 // void rethrow_exception [[noreturn]] (exception_ptr p);
33 std::exception_ptr p;
52 // On Windows the exception_ptr copies the exception
  /external/libcxx/test/libcxx/thread/futures/futures.promise/
set_exception.pass.cpp 18 // void set_exception(exception_ptr p);
19 // Test that a null exception_ptr is diagnosed.
36 p.set_exception(std::exception_ptr());
46 p.set_exception(std::exception_ptr());
set_exception_at_thread_exit.pass.cpp 18 // void set_exception_on_thread_exit(exception_ptr p);
19 // Test that a null exception_ptr is diagnosed.
36 p.set_exception_at_thread_exit(std::exception_ptr());
46 p.set_exception_at_thread_exit(std::exception_ptr());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/thread/futures/futures.promise/
set_exception.pass.cpp 18 // void set_exception(exception_ptr p);
19 // Test that a null exception_ptr is diagnosed.
36 p.set_exception(std::exception_ptr());
46 p.set_exception(std::exception_ptr());
set_exception_at_thread_exit.pass.cpp 18 // void set_exception_on_thread_exit(exception_ptr p);
19 // Test that a null exception_ptr is diagnosed.
36 p.set_exception_at_thread_exit(std::exception_ptr());
46 p.set_exception_at_thread_exit(std::exception_ptr());
  /external/llvm/test/CodeGen/PowerPC/
glob-comp-aa-crash.ll 5 %"class.std::__1::__assoc_sub_state" = type { %"class.std::__1::__shared_count", %"class.std::__exception_ptr::exception_ptr", %"class.std::__1::mutex", %"class.std::__1::condition_variable", i32 }
7 %"class.std::__exception_ptr::exception_ptr" = type { i8* }
23 %ref.tmp = alloca %"class.std::__exception_ptr::exception_ptr", align 8
25 %agg.tmp = alloca %"class.std::__exception_ptr::exception_ptr", align 8
39 call void @_ZNSt15__exception_ptr13exception_ptrC1EMS0_FvvE(%"class.std::__exception_ptr::exception_ptr"* %ref.tmp, { i64, i64 }* byval %tmp) #5
40 %call = call zeroext i1 @_ZNSt15__exception_ptrneERKNS_13exception_ptrES2_(%"class.std::__exception_ptr::exception_ptr"* %__exception_, %"class.std::__exception_ptr::exception_ptr"* %ref.tmp) #5
41 call void @_ZNSt15__exception_ptr13exception_ptrD1Ev(%"class.std::__exception_ptr::exception_ptr"* %ref.tmp) #5
45 call void @_ZNSt15__exception_ptr13exception_ptrC1ERKS0_(%"class.std::__exception_ptr::exception_ptr"* %agg.tmp, %"class.std::__exception_ptr::exception_ptr"* %__exception_) #
    [all...]
  /external/google-breakpad/src/client/ios/handler/
ios_exception_minidump_generator.mm 144 MDRawExceptionStream *exception_ptr = exception.get();
145 exception_ptr->thread_id = pthread_mach_thread_np(pthread_self());
149 exception_ptr->exception_record.exception_code = kExceptionType;
150 exception_ptr->exception_record.exception_flags = kExceptionCode;
152 if (!WriteCrashingContext(&exception_ptr->thread_context))
155 exception_ptr->exception_record.exception_address = GetPCFromException();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
nested_exception.h 54 /// Exception class with exception_ptr data member.
57 exception_ptr _M_ptr;
72 exception_ptr
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
nested_exception.h 54 /// Exception class with exception_ptr data member.
57 exception_ptr _M_ptr;
72 exception_ptr
  /external/libcxx/src/
future.cpp 116 __assoc_sub_state::set_exception(exception_ptr __p)
129 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p)
255 promise<void>::set_exception(exception_ptr __p)
275 promise<void>::set_exception_at_thread_exit(exception_ptr __p)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
future.cpp 116 __assoc_sub_state::set_exception(exception_ptr __p)
129 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p)
255 promise<void>::set_exception(exception_ptr __p)
275 promise<void>::set_exception_at_thread_exit(exception_ptr __p)
  /external/libcxxabi/src/
cxa_exception.hpp 29 // This is a new field to support C++ 0x exception_ptr.
58 // This is a new field to support C++ 0x exception_ptr.
  /external/libcxx/test/std/thread/futures/futures.promise/
set_exception.pass.cpp 18 // void set_exception(exception_ptr p);
set_exception_at_thread_exit.pass.cpp 18 // void promise::set_exception_at_thread_exit(exception_ptr p);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.promise/
set_exception.pass.cpp 18 // void set_exception(exception_ptr p);
set_exception_at_thread_exit.pass.cpp 18 // void promise::set_exception_at_thread_exit(exception_ptr p);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_exception.hpp 29 // This is a new field to support C++ 0x exception_ptr.
58 // This is a new field to support C++ 0x exception_ptr.

Completed in 1223 milliseconds

12 3 4 5 6 7 8