OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:future_error
(Results
1 - 25
of
42
) sorted by null
1
2
/external/libcxx/test/std/thread/futures/futures.future_error/
types.pass.cpp
14
// class
future_error
: public logic_error {...};
21
static_assert((std::is_convertible<std::
future_error
*,
what.pass.cpp
21
// class
future_error
32
std::
future_error
f(std::make_error_code(std::future_errc::broken_promise));
37
std::
future_error
f(std::make_error_code(std::future_errc::future_already_retrieved));
42
std::
future_error
f(std::make_error_code(std::future_errc::promise_already_satisfied));
46
std::
future_error
f(std::make_error_code(std::future_errc::no_state));
code.pass.cpp
14
// class
future_error
25
std::
future_error
f(ec);
30
std::
future_error
f(ec);
35
std::
future_error
f(ec);
40
std::
future_error
f(ec);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/
types.pass.cpp
12
// class
future_error
: public logic_error {...};
19
static_assert((std::is_convertible<std::
future_error
*,
what.pass.cpp
19
// class
future_error
30
std::
future_error
f(std::make_error_code(std::future_errc::broken_promise));
35
std::
future_error
f(std::make_error_code(std::future_errc::future_already_retrieved));
40
std::
future_error
f(std::make_error_code(std::future_errc::promise_already_satisfied));
44
std::
future_error
f(std::make_error_code(std::future_errc::no_state));
code.pass.cpp
12
// class
future_error
23
std::
future_error
f(ec);
28
std::
future_error
f(ec);
33
std::
future_error
f(ec);
38
std::
future_error
f(ec);
/external/libcxx/src/
future.cpp
75
future_error
::
future_error
(error_code __ec)
function in class:future_error
81
future_error
::~
future_error
() _NOEXCEPT
97
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
109
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
121
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
134
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
185
throw
future_error
(make_error_code(future_errc::no_state));
194
throw
future_error
(make_error_code(future_errc::future_already_retrieved))
[
all
...]
/external/libcxx/test/std/thread/futures/futures.promise/
set_value_void.pass.cpp
34
catch (const std::
future_error
& e)
get_future.pass.cpp
37
catch (const std::
future_error
& e)
50
catch (const std::
future_error
& e)
set_exception.pass.cpp
42
catch (const std::
future_error
& e)
set_lvalue.pass.cpp
38
catch (const std::
future_error
& e)
copy_assign.fail.cpp
38
catch (const std::
future_error
& e)
59
catch (const std::
future_error
& e)
80
catch (const std::
future_error
& e)
copy_ctor.fail.cpp
36
catch (const std::
future_error
& e)
55
catch (const std::
future_error
& e)
74
catch (const std::
future_error
& e)
dtor.pass.cpp
45
catch (const std::
future_error
& e)
74
catch (const std::
future_error
& e)
103
catch (const std::
future_error
& e)
move_assign.pass.cpp
41
catch (const std::
future_error
& e)
62
catch (const std::
future_error
& e)
83
catch (const std::
future_error
& e)
move_ctor.pass.cpp
39
catch (const std::
future_error
& e)
58
catch (const std::
future_error
& e)
77
catch (const std::
future_error
& e)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
future.cpp
73
future_error
::
future_error
(error_code __ec)
function in class:future_error
79
future_error
::~
future_error
() _NOEXCEPT
95
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
108
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
121
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
135
throw
future_error
(make_error_code(future_errc::promise_already_satisfied));
188
throw
future_error
(make_error_code(future_errc::no_state));
197
throw
future_error
(make_error_code(future_errc::future_already_retrieved))
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
set_value_void.pass.cpp
32
catch (const std::
future_error
& e)
get_future.pass.cpp
35
catch (const std::
future_error
& e)
48
catch (const std::
future_error
& e)
set_exception.pass.cpp
40
catch (const std::
future_error
& e)
set_lvalue.pass.cpp
36
catch (const std::
future_error
& e)
copy_assign.fail.cpp
38
catch (const std::
future_error
& e)
59
catch (const std::
future_error
& e)
80
catch (const std::
future_error
& e)
copy_ctor.fail.cpp
36
catch (const std::
future_error
& e)
55
catch (const std::
future_error
& e)
74
catch (const std::
future_error
& e)
/external/libcxx/test/std/thread/futures/futures.tas/futures.task.members/
get_future.pass.cpp
47
catch (const std::
future_error
& e)
59
catch (const std::
future_error
& e)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
get_future.pass.cpp
45
catch (const std::
future_error
& e)
57
catch (const std::
future_error
& e)
Completed in 130 milliseconds
1
2