Home
last modified time | relevance | path

Searched refs:set_exception (Results 1 – 9 of 9) sorted by relevance

/external/libcxx/test/std/thread/futures/futures.promise/
Dset_exception.pass.cpp27 p.set_exception(std::make_exception_ptr(3)); in main()
39 p.set_exception(std::make_exception_ptr(3)); in main()
/external/libcxx/src/
Dfuture.cpp116 __assoc_sub_state::set_exception(exception_ptr __p) in set_exception() function in __assoc_sub_state
225 __state_->set_exception(make_exception_ptr( in ~promise()
253 promise<void>::set_exception(exception_ptr __p) in set_exception() function in promise
259 __state_->set_exception(__p); in set_exception()
/external/libcxx/test/std/thread/futures/futures.unique_future/
Dget.pass.cpp32 p.set_exception(std::make_exception_ptr(3)); in func2()
47 p.set_exception(std::make_exception_ptr(3.5)); in func4()
59 p.set_exception(std::make_exception_ptr('c')); in func6()
/external/libcxx/test/std/thread/futures/futures.shared_future/
Dget.pass.cpp32 p.set_exception(std::make_exception_ptr(3)); in func2()
47 p.set_exception(std::make_exception_ptr(3.5)); in func4()
59 p.set_exception(std::make_exception_ptr('c')); in func6()
/external/libcxx/include/
Dfuture80 void set_exception(exception_ptr p);
109 void set_exception(exception_ptr p);
137 void set_exception(exception_ptr p);
561 void set_exception(exception_ptr __p);
883 this->set_exception(current_exception());
930 this->set_exception(current_exception());
976 this->set_exception(current_exception());
1031 this->set_exception(current_exception());
1402 void set_exception(exception_ptr __p);
1437 __state_->set_exception(make_exception_ptr(
[all …]
/external/opencv3/modules/videoio/src/
Dppltasks_winrt.hpp3758 …bool set_exception(_E _Except) const // 'const' (even though it's not deep) allows to safely pass …
3773 …bool set_exception(std::exception_ptr _ExceptionPtr) const // 'const' (even though it's not deep) …
3995 …bool set_exception(_E _Except) const // 'const' (even though it's not deep) allows to safely pass …
4009 …bool set_exception(std::exception_ptr _ExceptionPtr) const // 'const' (even though it's not deep) …
9428 _Tce.set_exception(_Exception);
/external/opencv3/modules/highgui/src/
Dppltasks_winrt.h3758 …bool set_exception(_E _Except) const // 'const' (even though it's not deep) allows to safely pass …
3773 …bool set_exception(std::exception_ptr _ExceptionPtr) const // 'const' (even though it's not deep) …
3995 …bool set_exception(_E _Except) const // 'const' (even though it's not deep) allows to safely pass …
4009 …bool set_exception(std::exception_ptr _ExceptionPtr) const // 'const' (even though it's not deep) …
9428 _Tce.set_exception(_Exception);
/external/v8/src/heap/
Dheap.cc2230 set_exception(null_value()); in CreateInitialMaps()
2678 set_exception(*factory->NewOddball(factory->exception_map(), "exception", in CreateInitialObjects()
/external/v8/src/ast/
Dast.h2601 void set_exception(Expression* e) { exception_ = e; } in set_exception() function