HomeSort by relevance Sort by last modified time
    Searched refs:promise (Results 26 - 50 of 155) sorted by null

12 3 4 5 6 7

  /external/libcxx/test/std/thread/futures/futures.promise/
copy_ctor.fail.cpp 12 // class promise<R>
14 // promise(const promise&) = delete;
25 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
26 std::promise<int> p(p0);
44 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
45 std::promise<int&> p(p0);
63 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
64 std::promise<void> p(p0);
dtor.pass.cpp 14 // class promise<R>
16 // ~promise();
27 std::promise<T> p;
37 std::promise<T> p;
56 std::promise<T> p;
66 std::promise<T> p;
84 std::promise<T> p;
95 std::promise<T> p;
108 // Note that this particular check only applies to promise<void>
move_assign.pass.cpp 14 // class promise<R>
16 // promise& operator=(promise&& rhs);
28 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
29 std::promise<int> p(std::allocator_arg, test_allocator<int>());
49 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
50 std::promise<int&> p(std::allocator_arg, test_allocator<int>());
70 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
71 std::promise<void> p(std::allocator_arg, test_allocator<void>());
move_ctor.pass.cpp 14 // class promise<R>
16 // promise(promise&& rhs);
28 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
29 std::promise<int> p(std::move(p0));
47 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
48 std::promise<int&> p(std::move(p0));
66 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
67 std::promise<void> p(std::move(p0));
swap.pass.cpp 14 // class promise<R>
16 // void swap(promise& other);
18 // template <class R> void swap(promise<R>& x, promise<R>& y);
29 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
30 std::promise<int> p(std::allocator_arg, test_allocator<int>());
43 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
44 std::promise<int> p(std::allocator_arg, test_allocator<int>());
57 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
58 std::promise<int> p
    [all...]
set_value_void.pass.cpp 14 // class promise<R>
16 // void promise<void>::set_value();
25 std::promise<T> p;
set_rvalue.pass.cpp 14 // class promise<R>
16 // void promise::set_value(R&& r);
39 std::promise<T> p;
56 std::promise<T> p;
set_value_const.pass.cpp 14 // class promise<R>
16 // void promise::set_value(const R& r);
32 std::promise<T> p;
51 std::promise<T> p;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
copy_assign.fail.cpp 12 // class promise<R>
14 // promise& operator=(const promise& rhs) = delete;
25 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
26 std::promise<int> p(std::allocator_arg, test_allocator<int>());
46 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
47 std::promise<int&> p(std::allocator_arg, test_allocator<int>());
67 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
68 std::promise<void> p(std::allocator_arg, test_allocator<void>());
copy_ctor.fail.cpp 12 // class promise<R>
14 // promise(const promise&) = delete;
25 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
26 std::promise<int> p(p0);
44 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
45 std::promise<int&> p(p0);
63 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
64 std::promise<void> p(p0);
dtor.pass.cpp 12 // class promise<R>
14 // ~promise();
25 std::promise<T> p;
35 std::promise<T> p;
54 std::promise<T> p;
64 std::promise<T> p;
82 std::promise<T> p;
93 std::promise<T> p;
106 // Note that this particular check only applies to promise<void>
move_assign.pass.cpp 12 // class promise<R>
14 // promise& operator=(promise&& rhs);
26 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
27 std::promise<int> p(std::allocator_arg, test_allocator<int>());
47 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
48 std::promise<int&> p(std::allocator_arg, test_allocator<int>());
68 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
69 std::promise<void> p(std::allocator_arg, test_allocator<void>());
move_ctor.pass.cpp 12 // class promise<R>
14 // promise(promise&& rhs);
26 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
27 std::promise<int> p(std::move(p0));
45 std::promise<int&> p0(std::allocator_arg, test_allocator<int>());
46 std::promise<int&> p(std::move(p0));
64 std::promise<void> p0(std::allocator_arg, test_allocator<void>());
65 std::promise<void> p(std::move(p0));
swap.pass.cpp 12 // class promise<R>
14 // void swap(promise& other);
16 // template <class R> void swap(promise<R>& x, promise<R>& y);
27 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
28 std::promise<int> p(std::allocator_arg, test_allocator<int>());
41 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
42 std::promise<int> p(std::allocator_arg, test_allocator<int>());
55 std::promise<int> p0(std::allocator_arg, test_allocator<int>());
56 std::promise<int> p
    [all...]
set_value_void.pass.cpp 12 // class promise<R>
14 // void promise<void>::set_value();
23 std::promise<T> p;
set_rvalue.pass.cpp 12 // class promise<R>
14 // void promise::set_value(R&& r);
37 std::promise<T> p;
54 std::promise<T> p;
  /external/clang/test/PCH/
cxx-friends.cpp 24 return promise<T*>().k;
  /external/libcxx/test/std/thread/futures/futures.shared_future/
wait.pass.cpp 21 void func1(std::promise<int> p)
29 void func3(std::promise<int&> p)
36 void func5(std::promise<void> p)
48 std::promise<T> p;
62 std::promise<T> p;
76 std::promise<T> p;
wait_for.pass.cpp 25 void func1(std::promise<int> p)
33 void func3(std::promise<int&> p)
40 void func5(std::promise<void> p)
51 std::promise<T> p;
67 std::promise<T> p;
83 std::promise<T> p;
  /external/libcxx/test/std/thread/futures/futures.unique_future/
wait.pass.cpp 21 void func1(std::promise<int> p)
29 void func3(std::promise<int&> p)
36 void func5(std::promise<void> p)
48 std::promise<T> p;
62 std::promise<T> p;
76 std::promise<T> p;
wait_for.pass.cpp 25 void func1(std::promise<int> p)
33 void func3(std::promise<int&> p)
40 void func5(std::promise<void> p)
51 std::promise<T> p;
67 std::promise<T> p;
83 std::promise<T> p;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
wait.pass.cpp 19 void func1(std::promise<int> p)
27 void func3(std::promise<int&> p)
34 void func5(std::promise<void> p)
46 std::promise<T> p;
60 std::promise<T> p;
74 std::promise<T> p;
wait_for.pass.cpp 23 void func1(std::promise<int> p)
31 void func3(std::promise<int&> p)
38 void func5(std::promise<void> p)
49 std::promise<T> p;
65 std::promise<T> p;
81 std::promise<T> p;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
wait.pass.cpp 19 void func1(std::promise<int> p)
27 void func3(std::promise<int&> p)
34 void func5(std::promise<void> p)
46 std::promise<T> p;
60 std::promise<T> p;
74 std::promise<T> p;
wait_for.pass.cpp 23 void func1(std::promise<int> p)
31 void func3(std::promise<int&> p)
38 void func5(std::promise<void> p)
49 std::promise<T> p;
65 std::promise<T> p;
81 std::promise<T> p;

Completed in 247 milliseconds

12 3 4 5 6 7