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

12 3 4 5 6 7 8 91011>>

  /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);
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));
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_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_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;
set_value_const.pass.cpp 12 // class promise<R>
14 // void promise::set_value(const R& r);
30 std::promise<T> p;
49 std::promise<T> p;
set_value_void.pass.cpp 12 // class promise<R>
14 // void promise<void>::set_value();
23 std::promise<T> 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>());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
future 123 class promise;
284 /// Base class for state between a promise and one or more
372 // check this is only used by promise<R>::set_value(const R&)
373 // or promise<R>::set_value(R&)
374 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
375 || is_same<const _Res, _Arg>::value, // promise<R>
378 typename promise<_Res>::_Ptr_type operator()()
384 promise<_Res>* _M_promise;
392 typename promise<_Res>::_Ptr_type operator()()
398 promise<_Res>* _M_promise
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
future 123 class promise;
284 /// Base class for state between a promise and one or more
372 // check this is only used by promise<R>::set_value(const R&)
373 // or promise<R>::set_value(R&)
374 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
375 || is_same<const _Res, _Arg>::value, // promise<R>
378 typename promise<_Res>::_Ptr_type operator()()
384 promise<_Res>* _M_promise;
392 typename promise<_Res>::_Ptr_type operator()()
398 promise<_Res>* _M_promise
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
future 123 class promise;
284 /// Base class for state between a promise and one or more
372 // check this is only used by promise<R>::set_value(const R&)
373 // or promise<R>::set_value(R&)
374 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
375 || is_same<const _Res, _Arg>::value, // promise<R>
378 typename promise<_Res>::_Ptr_type operator()()
384 promise<_Res>* _M_promise;
392 typename promise<_Res>::_Ptr_type operator()()
398 promise<_Res>* _M_promise
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
future 123 class promise;
284 /// Base class for state between a promise and one or more
372 // check this is only used by promise<R>::set_value(const R&)
373 // or promise<R>::set_value(R&)
374 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
375 || is_same<const _Res, _Arg>::value, // promise<R>
378 typename promise<_Res>::_Ptr_type operator()()
384 promise<_Res>* _M_promise;
392 typename promise<_Res>::_Ptr_type operator()()
398 promise<_Res>* _M_promise
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
future 59 class promise
62 promise();
64 promise(allocator_arg_t, const Allocator& a);
65 promise(promise&& rhs) noexcept;
66 promise(const promise& rhs) = delete;
67 ~promise();
70 promise& operator=(promise&& rhs) noexcept
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
future.cpp 35 return string("The associated promise has been destructed prior "
39 "the promise or packaged_task.");
41 return string("The state of the promise has already been set.");
201 promise<void>::promise() function in class:promise
206 promise<void>::~promise()
219 promise<void>::get_future()
229 promise<void>::set_value()
239 promise<void>::set_exception(exception_ptr __p
    [all...]
  /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;
wait_until.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/modules/serviceworkers/
NavigatorServiceWorker.cpp 101 ScriptPromise promise = ScriptPromise::createPending(executionContext); local
102 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(promise, executionContext);
107 return promise;
115 return promise;
121 return promise;
125 return promise;
136 ScriptPromise promise = ScriptPromise::createPending(executionContext); local
137 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(promise, executionContext);
142 return promise;
151 return promise;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 48 // v8::Context before trying to fulfill the promise, and enable test.
81 ScriptPromise promise = ScriptPromise::createPending(); local
82 RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(promise);
105 return promise;
150 ScriptPromise promise = ScriptPromise::createPending();
151 RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(promise);
153 return promise;
178 ScriptPromise promise = ScriptPromise::createPending(); local
179 RefPtr<CryptoResultImpl> result = CryptoResultImpl::create(promise);
181 return promise;
200 ScriptPromise promise = ScriptPromise::createPending(); local
275 ScriptPromise promise = ScriptPromise::createPending(); local
    [all...]

Completed in 1258 milliseconds

12 3 4 5 6 7 8 91011>>