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

12 3 4 5 6 7 8 91011

  /external/chromium_org/media/base/
media_keys.h 83 scoped_ptr<SimpleCdmPromise> promise) = 0;
88 // |promise| is resolved.
93 scoped_ptr<NewSessionCdmPromise> promise) = 0;
97 // |promise| is resolved.
99 scoped_ptr<NewSessionCdmPromise> promise) = 0;
105 scoped_ptr<SimpleCdmPromise> promise) = 0;
109 scoped_ptr<SimpleCdmPromise> promise) = 0;
114 scoped_ptr<SimpleCdmPromise> promise) = 0;
119 scoped_ptr<KeyIdsPromise> promise) = 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseResolverTest.cpp 84 ScriptPromise promise; local
88 promise = resolver->promise();
92 ASSERT_FALSE(promise.isEmpty());
95 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
110 EXPECT_TRUE(resolver->promise().isEmpty());
132 ScriptPromise promise; local
136 promise = resolver->promise();
140 ASSERT_FALSE(promise.isEmpty())
180 ScriptPromise promise; local
273 ScriptPromise promise; local
297 ScriptPromise promise; local
    [all...]
ScriptPromise.cpp 57 : m_resolver(scriptState, v8::Promise::Resolver::New(scriptState->isolate())) { }
59 v8::Local<v8::Promise> ScriptPromise::InternalResolver::v8Promise() const
62 return v8::Local<v8::Promise>();
63 return m_resolver.v8Value().As<v8::Promise::Resolver>()->GetPromise();
66 ScriptPromise ScriptPromise::InternalResolver::promise() const function in class:blink::ScriptPromise::InternalResolver
77 m_resolver.v8Value().As<v8::Promise::Resolver>()->Resolve(value);
85 m_resolver.v8Value().As<v8::Promise::Resolver>()->Reject(value);
97 V8ThrowException::throwTypeError("the given value is not a Promise", scriptState->isolate());
108 v8::Local<v8::Object> promise = m_promise.v8Value().As<v8::Object>();
110 ASSERT(promise->IsPromise())
142 ScriptPromise promise = resolver.promise(); local
157 ScriptPromise promise = resolver.promise(); local
173 v8::Local<v8::Promise> promise = resolver->GetPromise(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.cpp 88 ScriptPromise promise = resolver->promise(); local
93 return promise;
99 return promise;
107 ScriptPromise promise = resolver->promise(); local
109 return promise;
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushManager.cpp 47 ScriptPromise promise = resolver->promise(); local
49 return promise;
  /external/libcxx/test/thread/futures/futures.promise/
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...]
  /external/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...]
  /external/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
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;
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...]
  /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...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
CacheStorage.cpp 154 const ScriptPromise promise = resolver->promise(); local
159 return promise;
167 return promise;
173 const ScriptPromise promise = resolver->promise(); local
177 return promise;
185 return promise;
191 const ScriptPromise promise = resolver->promise(); local
204 const ScriptPromise promise = resolver->promise(); local
217 const ScriptPromise promise = resolver->promise(); local
    [all...]
ServiceWorkerClients.cpp 57 ScriptPromise promise = resolver->promise(); local
62 return promise;
66 return promise;

Completed in 359 milliseconds

12 3 4 5 6 7 8 91011