HomeSort by relevance Sort by last modified time
    Searched refs:promise (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
uses_allocator.pass.cpp 12 // class promise<R>
15 // struct uses_allocator<promise<R>, Alloc>
23 static_assert((std::uses_allocator<std::promise<int>, test_allocator<int> >::value), "");
24 static_assert((std::uses_allocator<std::promise<int&>, test_allocator<int> >::value), "");
25 static_assert((std::uses_allocator<std::promise<void>, test_allocator<void> >::value), "");
default.pass.cpp 12 // class promise<R>
14 // promise();
22 std::promise<int> p;
27 std::promise<int&> p;
32 std::promise<void> p;
set_lvalue_at_thread_exit.pass.cpp 12 // class promise<R>
14 // void promise<R&>::set_value_at_thread_exit(R& r);
22 void func(std::promise<int&> p)
31 std::promise<int&> p;
set_value_at_thread_exit_const.pass.cpp 12 // class promise<R>
14 // void promise::set_value_at_thread_exit(const R& r);
19 void func(std::promise<int> p)
28 std::promise<int> p;
set_value_at_thread_exit_void.pass.cpp 12 // class promise<R>
14 // void promise<void>::set_value_at_thread_exit();
22 void func(std::promise<void> p)
31 std::promise<void> p;
get_future.pass.cpp 12 // class promise<R>
22 std::promise<double> p;
28 std::promise<double> p;
41 std::promise<double> p;
42 std::promise<double> p0 = std::move(p);
set_exception_at_thread_exit.pass.cpp 12 // class promise<R>
14 // void promise::set_exception_at_thread_exit(exception_ptr p);
19 void func(std::promise<int> p)
29 std::promise<T> p;
set_rvalue_at_thread_exit.pass.cpp 12 // class promise<R>
14 // void promise::set_value_at_thread_exit(R&& r);
22 void func(std::promise<std::unique_ptr<int>> p)
33 std::promise<std::unique_ptr<int>> p;
alloc_ctor.pass.cpp 12 // class promise<R>
15 // promise(allocator_arg_t, const Allocator& a);
26 std::promise<int> p(std::allocator_arg, test_allocator<int>());
34 std::promise<int&> p(std::allocator_arg, test_allocator<int>());
42 std::promise<void> p(std::allocator_arg, test_allocator<void>());
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;
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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
get.pass.cpp 21 void func1(std::promise<int> p)
27 void func2(std::promise<int> p)
35 void func3(std::promise<int&> p)
42 void func4(std::promise<int&> p)
48 void func5(std::promise<void> p)
54 void func6(std::promise<void> p)
65 std::promise<T> p;
73 std::promise<T> p;
92 std::promise<T> p;
100 std::promise<T> p
    [all...]
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/
get.pass.cpp 21 void func1(std::promise<int> p)
27 void func2(std::promise<int> p)
35 void func3(std::promise<int&> p)
42 void func4(std::promise<int&> p)
48 void func5(std::promise<void> p)
54 void func6(std::promise<void> p)
65 std::promise<T> p;
73 std::promise<T> p;
92 std::promise<T> p;
100 std::promise<T> p
    [all...]
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;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PromiseResolver.idl 33 EnabledAtRuntime=promise
  /external/clang/test/PCH/
cxx-friends.cpp 24 return promise<T*>().k;
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
NavigatorWebMIDI.cpp 79 RefPtr<MIDIAccessPromise> promise = MIDIAccessPromise::create(context, options); local
80 return promise;

Completed in 215 milliseconds

1 2 3 4