Home
last modified time | relevance | path

Searched refs:rethrow_exception (Results 1 – 16 of 16) sorted by relevance

/external/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp17 // stable ABI), and its rethrow_exception(std::__exception_ptr::exception_ptr)
36 _LIBCPP_NORETURN void rethrow_exception(__exception_ptr::exception_ptr);
69 rethrow_exception(__ptr_);
73 void rethrow_exception(exception_ptr p)
75 rethrow_exception(reinterpret_cast<__exception_ptr::exception_ptr&>(p));
Dexception_pointer_cxxabi.ipp53 rethrow_exception(__ptr_);
67 void rethrow_exception(exception_ptr p)
Dexception_pointer_unimplemented.ipp61 rethrow_exception(__ptr_);
73 void rethrow_exception(exception_ptr p)
/external/libcxx/test/std/language.support/support.exception/except.nested/
Dctor_default.pass.cpp49 rethrow_exception(e.nested_ptr()); in main()
Dctor_copy.pass.cpp51 rethrow_exception(e.nested_ptr()); in main()
Dassign.pass.cpp53 rethrow_exception(e.nested_ptr()); in main()
/external/libcxx/test/std/language.support/support.exception/propagation/
Drethrow_exception.pass.cpp44 std::rethrow_exception(p); in main()
Dmake_exception_ptr.pass.cpp36 std::rethrow_exception(p); in main()
/external/libcxx/include/
Dexception57 void rethrow_exception [[noreturn]] (exception_ptr p);
135 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
159 friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Dfuture694 rethrow_exception(this->__exception_);
705 rethrow_exception(this->__exception_);
765 rethrow_exception(this->__exception_);
/external/eigen/bench/tensors/
Dtensor_benchmarks_sycl.cc18 std::rethrow_exception(e); in sycl_queue()
/external/v8/src/debug/
Dliveedit.cc682 Handle<JSObject> rethrow_exception; in GatherCompileInfo() local
692 rethrow_exception = Handle<JSObject>::cast(exception); in GatherCompileInfo()
706 Object::SetProperty(rethrow_exception, start_pos_key, start_pos, SLOPPY) in GatherCompileInfo()
708 Object::SetProperty(rethrow_exception, end_pos_key, end_pos, SLOPPY) in GatherCompileInfo()
710 Object::SetProperty(rethrow_exception, script_obj_key, script_obj, SLOPPY) in GatherCompileInfo()
718 if (rethrow_exception.is_null()) { in GatherCompileInfo()
721 return isolate->Throw<JSArray>(rethrow_exception); in GatherCompileInfo()
/external/autotest/server/site_tests/android_ACTS/
Dandroid_ACTS.py252 results.rethrow_exception()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorDeviceSycl.h34 std::rethrow_exception(e); in SyclDevice()
/external/libcxx/src/
Dfuture.cpp154 rethrow_exception(__exception_); in copy()
/external/autotest/site_utils/
Dacts_lib.py571 def rethrow_exception(self): member in ActsTestResults