/external/skia/src/image/ |
SkImage_Base.h | 22 // return a read-only copy of the pixels. We promise to not modify them,
|
/external/chromium_org/cc/base/ |
swap_promise.h | 15 // Swap Promise can be inserted into LayerTreeHost/LayerTreeImpl, to track 25 // the behavior of DidSwap() and DidNotSwap(). Notice that the promise can
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
FontFaceSet.idl | 46 [RaisesException] Promise load(DOMString font, [Default=NullString] optional DOMString text); 47 Promise ready();
|
FontFace.idl | 55 [CallWith=ExecutionContext] Promise ready();
|
FontFace.cpp | 63 static PassOwnPtr<FontFaceReadyPromiseResolver> create(ScriptPromise promise, ExecutionContext* context) 65 return adoptPtr(new FontFaceReadyPromiseResolver(promise, context)); 84 FontFaceReadyPromiseResolver(ScriptPromise promise, ExecutionContext* context) 86 , m_resolver(ScriptPromiseResolver::create(promise, context)) 370 ScriptPromise promise = ScriptPromise::createPending(context); local 371 OwnPtr<FontFaceReadyPromiseResolver> resolver = FontFaceReadyPromiseResolver::create(promise, context); 376 return promise;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Promise.h | 40 class Promise : public RefCounted<Promise> {
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
MIDIAccessPromise.idl | 31 // FIXME: Once Promise is implemented, remove this interface and use it. 37 // Supports only then() method tentatively. But it never returns Promise.
|
MIDIAccess.cpp | 45 PassRefPtr<MIDIAccess> MIDIAccess::create(ExecutionContext* context, MIDIAccessPromise* promise) 47 RefPtr<MIDIAccess> midiAccess(adoptRef(new MIDIAccess(context, promise))); 58 MIDIAccess::MIDIAccess(ExecutionContext* context, MIDIAccessPromise* promise) 60 , m_promise(promise)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/ |
set_exception.pass.cpp | 12 // class promise<R> 23 std::promise<T> p;
|
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/ |
ImageBitmapFactories.cpp | 68 ScriptPromise promise = ScriptPromise::createPending(context); local 69 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(promise, context); 71 return promise; 199 ScriptPromise promise = ScriptPromise::createPending(eventTarget->executionContext()); local 200 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(promise, eventTarget->executionContext()); 204 return promise; 217 ScriptPromise promise = ScriptPromise::createPending(eventTarget->executionContext()); local 218 RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(promise, eventTarget->executionContext()); 222 return promise;
|
/external/skia/tests/ |
ColorTest.cpp | 29 // we can't promise that c0 == c1, since c0 -> p0 is a many to one 30 // function, however, we can promise that p0 -> c1 -> p1 : p0 == p1
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptPromiseResolver.h | 49 // ScriptPromiseResolver is a class for performing operations on Promise 54 // 2. Pass the promise object of the holder to a JavaScript program 79 // Return true if the promise object is in pending state. 82 ScriptPromise promise() function in class:WebCore::ScriptPromiseResolver
|
ScriptPromiseResolverTest.cpp | 74 return V8PromiseCustom::getState(V8PromiseCustom::getInternal(promise())); 79 return V8PromiseCustom::getInternal(promise())->GetInternalField(V8PromiseCustom::InternalResultIndex); 82 v8::Local<v8::Object> promise() function in class:WebCore::__anon13314::ScriptPromiseResolverTest
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 26 // we rewind here, because we promise later when we call "decode", that
|
/external/clang/test/PCH/ |
cxx-friends.cpp | 24 return promise<T*>().k;
|
/external/skia/src/images/ |
SkImageDecoder_FactoryRegistrar.cpp | 26 // we rewind here, because we promise later when we call "decode", that
|
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
ServiceWorkerGlobalScope.h | 34 #include "core/dom/Promise.h"
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ChannelsTest.java | 39 * This fails on the RI which violates its own promise to throw when
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
v8_types.py | 133 idl_type == 'Promise') # Promise will be basic in future 236 'Promise': 'ScriptPromise', 316 'Promise': set(['bindings/v8/ScriptPromise.h']), 364 'Promise': 'ScriptPromise({v8_value})', 449 if idl_type in ['Promise', 'any']:
|
/external/chromium_org/content/browser/devtools/ |
devtools_protocol.cc | 88 scoped_refptr<DevToolsProtocol::Response> promise = local 90 promise->is_async_promise_ = true; 91 return promise;
|
/external/chromium/base/ |
sync_socket.h | 60 // size as a promise and simply test against zero.
|
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
bmm_test.html | 8 <script src="cr/promise.js"></script>
|
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
bmm_test.html | 8 <script src="cr/promise.js"></script>
|
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
bmm_test.html | 8 <script src="cr/promise.js"></script>
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
CryptoResultImpl.h | 43 // Wrapper around a Promise to notify completion of the crypto operation.
|