| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
| D | ScriptPromise.cpp | 54 ScriptPromise::ScriptPromise(ScriptState* scriptState, v8::Handle<v8::Value> value) in ScriptPromise() function in WebCore::ScriptPromise 68 ScriptPromise ScriptPromise::then(PassOwnPtr<ScriptFunction> onFulfilled, PassOwnPtr<ScriptFunction… in then() 71 return ScriptPromise(); in then() 87 return ScriptPromise(); in then() 93 return ScriptPromise(m_scriptState.get(), resultPromise); in then() 96 ScriptPromise ScriptPromise::cast(ScriptState* scriptState, const ScriptValue& value) in cast() 98 return ScriptPromise::cast(scriptState, value.v8Value()); in cast() 101 ScriptPromise ScriptPromise::cast(ScriptState* scriptState, v8::Handle<v8::Value> value) in cast() 104 return ScriptPromise(); in cast() 106 return ScriptPromise(scriptState, value); in cast() [all …]
|
| D | ScriptPromise.h | 50 class ScriptPromise { 53 ScriptPromise() { } in ScriptPromise() function 57 ScriptPromise(ScriptState*, v8::Handle<v8::Value> promise); 59 …ScriptPromise then(PassOwnPtr<ScriptFunction> onFulfilled, PassOwnPtr<ScriptFunction> onRejected =… 100 static ScriptPromise cast(ScriptState*, const ScriptValue& /*value*/); 101 static ScriptPromise cast(ScriptState*, v8::Handle<v8::Value> /*value*/); 103 static ScriptPromise reject(ScriptState*, const ScriptValue&); 104 static ScriptPromise reject(ScriptState*, v8::Handle<v8::Value>); 106 static ScriptPromise rejectWithDOMException(ScriptState*, PassRefPtrWillBeRawPtr<DOMException>);
|
| D | ScriptPromiseTest.cpp | 96 ScriptPromise promise(scriptState(), v8::Undefined(isolate())); in TEST_F() 104 ScriptPromise promise = resolver->promise(); in TEST_F() 127 ScriptPromise promise = resolver->promise(); in TEST_F() 145 ScriptPromise promise = resolver->promise(); in TEST_F() 168 ScriptPromise promise = resolver->promise(); in TEST_F() 185 ScriptPromise promise = ScriptPromiseResolver::create(scriptState())->promise(); in TEST_F() 186 ScriptPromise newPromise = ScriptPromise::cast(scriptState(), promise.v8Value()); in TEST_F() 197 ScriptPromise promise1 = ScriptPromise::cast(scriptState(), ScriptValue(value)); in TEST_F() 198 ScriptPromise promise2 = ScriptPromise::cast(scriptState(), ScriptValue(value)); in TEST_F() 227 ScriptPromise promise = ScriptPromise::reject(scriptState(), ScriptValue(value)); in TEST_F() [all …]
|
| D | ScriptPromiseResolverTest.cpp | 87 ScriptPromise promise = m_resolver->promise(); in TEST_F() 103 ScriptPromise promise = m_resolver->promise(); in TEST_F() 121 ScriptPromise promise = m_resolver->promise(); in TEST_F() 139 ScriptPromise promise = m_resolver->promise(); in TEST_F() 163 ScriptPromise promise = m_resolver->promise(); in TEST_F()
|
| D | ScriptPromiseResolver.cpp | 59 ScriptPromise ScriptPromiseResolver::promise() in promise() 65 return ScriptPromise(m_scriptState.get(), v8Resolver->GetPromise()); in promise() 67 return ScriptPromise(); in promise()
|
| /external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
| D | SubtleCrypto.h | 53 ScriptPromise encrypt(ScriptState*, const Dictionary&, Key*, const ArrayPiece&); 54 ScriptPromise decrypt(ScriptState*, const Dictionary&, Key*, const ArrayPiece&); 55 ScriptPromise sign(ScriptState*, const Dictionary&, Key*, const ArrayPiece&); 57 …ScriptPromise verifySignature(ScriptState*, const Dictionary&, Key*, const ArrayPiece& signature, … 58 ScriptPromise digest(ScriptState*, const Dictionary&, const ArrayPiece& data); 60 …ScriptPromise generateKey(ScriptState*, const Dictionary&, bool extractable, const Vector<String>&… 61 …ScriptPromise importKey(ScriptState*, const String&, const ArrayPiece&, const Dictionary&, bool ex… 62 …ScriptPromise importKey(ScriptState*, const String&, const Dictionary&, const Dictionary&, bool ex… 63 ScriptPromise exportKey(ScriptState*, const String&, Key*); 65 ScriptPromise wrapKey(ScriptState*, const String&, Key*, Key*, const Dictionary&); [all …]
|
| D | SubtleCrypto.cpp | 89 static ScriptPromise startCryptoOperation(ScriptState* scriptState, const Dictionary& rawAlgorithm,… in startCryptoOperation() 92 ScriptPromise promise = result->promise(); in startCryptoOperation() 134 return ScriptPromise(); in startCryptoOperation() 196 ScriptPromise SubtleCrypto::encrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, Key* … in encrypt() 201 ScriptPromise SubtleCrypto::decrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, Key* … in decrypt() 206 ScriptPromise SubtleCrypto::sign(ScriptState* scriptState, const Dictionary& rawAlgorithm, Key* key… in sign() 211 ScriptPromise SubtleCrypto::verifySignature(ScriptState* scriptState, const Dictionary& rawAlgorith… in verifySignature() 216 ScriptPromise SubtleCrypto::digest(ScriptState* scriptState, const Dictionary& rawAlgorithm, const … in digest() 221 ScriptPromise SubtleCrypto::generateKey(ScriptState* scriptState, const Dictionary& rawAlgorithm, b… in generateKey() 224 ScriptPromise promise = result->promise(); in generateKey() [all …]
|
| /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/ |
| D | ImageBitmapFactories.cpp | 69 static ScriptPromise fulfillImageBitmap(ScriptState* scriptState, PassRefPtrWillBeRawPtr<ImageBitma… in fulfillImageBitmap() 72 ScriptPromise promise = resolver->promise(); in fulfillImageBitmap() 81 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventT… in createImageBitmap() 87 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventT… in createImageBitmap() 94 return ScriptPromise(); in createImageBitmap() 98 return ScriptPromise(); in createImageBitmap() 102 return ScriptPromise(); in createImageBitmap() 106 return ScriptPromise(); in createImageBitmap() 110 return ScriptPromise(); in createImageBitmap() 116 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventT… in createImageBitmap() [all …]
|
| D | ImageBitmapFactories.h | 61 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, ExceptionSta… 62 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, int sx, int … 63 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, ExceptionSta… 64 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, int sx, int … 65 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, Exce… 66 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, int … 67 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, ExceptionSt… 68 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, int sx, int… 69 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Blob*, ExceptionState&); 70 …static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Blob*, int sx, int sy, int sw, … [all …]
|
| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
| D | ServiceWorkerContainer.cpp | 78 ScriptPromise ServiceWorkerContainer::registerServiceWorker(ScriptState* scriptState, const String&… in registerServiceWorker() 83 ScriptPromise promise = resolver->promise(); in registerServiceWorker() 123 ScriptPromise ServiceWorkerContainer::unregisterServiceWorker(ScriptState* scriptState, const Strin… in unregisterServiceWorker() 127 ScriptPromise promise = resolver->promise(); in unregisterServiceWorker() 146 ScriptPromise ServiceWorkerContainer::ready(ScriptState* scriptState) in ready() 150 ScriptPromise promise = resolver->promise(); in ready() 156 return ScriptPromise(); in ready()
|
| D | ServiceWorkerGlobalScope.h | 41 class ScriptPromise; variable 58 ScriptPromise fetch(ScriptState*, Request*); 59 ScriptPromise fetch(ScriptState*, const String&);
|
| D | ServiceWorkerContainer.h | 69 ScriptPromise ready(ScriptState*); 71 ScriptPromise registerServiceWorker(ScriptState*, const String& pattern, const Dictionary&); 72 ScriptPromise unregisterServiceWorker(ScriptState*, const String& scope = String());
|
| D | ServiceWorkerClients.h | 17 class ScriptPromise; variable 25 ScriptPromise getServiced(ScriptState*);
|
| D | ServiceWorkerGlobalScope.cpp | 88 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request) in fetch() 94 ScriptPromise ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, const String& urlstring) in fetch() 98 …return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError("Invalid URL", scriptS… in fetch()
|
| /external/chromium_org/third_party/WebKit/Source/modules/quota/ |
| D | StorageQuota.cpp | 87 ScriptPromise StorageQuota::queryInfo(ScriptState* scriptState, String type) in queryInfo() 90 ScriptPromise promise = resolver->promise(); in queryInfo() 104 ScriptPromise StorageQuota::requestPersistentQuota(ScriptState* scriptState, unsigned long long new… in requestPersistentQuota() 109 ScriptPromise promise = resolver->promise(); in requestPersistentQuota()
|
| D | StorageQuota.h | 52 ScriptPromise queryInfo(ScriptState*, String type); 53 ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuota);
|
| D | StorageQuotaClient.h | 41 class ScriptPromise; variable 53 …virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) = 0;
|
| /external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
| D | NavigatorWebMIDI.cpp | 69 ScriptPromise NavigatorWebMIDI::requestMIDIAccess(ScriptState* scriptState, Navigator& navigator, c… in requestMIDIAccess() 74 ScriptPromise NavigatorWebMIDI::requestMIDIAccess(ScriptState* scriptState, const Dictionary& optio… in requestMIDIAccess() 78 ScriptPromise promise = resolver->promise(); in requestMIDIAccess()
|
| D | NavigatorWebMIDI.h | 50 static ScriptPromise requestMIDIAccess(ScriptState*, Navigator&, const Dictionary&); 51 ScriptPromise requestMIDIAccess(ScriptState*, const Dictionary&);
|
| /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/ |
| D | PushManager.h | 15 class ScriptPromise; variable 26 ScriptPromise registerPushMessaging(ScriptState*, const String& senderId);
|
| D | PushManager.cpp | 31 ScriptPromise PushManager::registerPushMessaging(ScriptState* scriptState, const String& senderId) in registerPushMessaging() 35 ScriptPromise promise = resolver->promise(); in registerPushMessaging()
|
| /external/chromium_org/third_party/WebKit/Source/modules/battery/ |
| D | NavigatorBattery.h | 25 static ScriptPromise getBattery(ScriptState*, Navigator&); 26 ScriptPromise getBattery(ScriptState*);
|
| D | NavigatorBattery.cpp | 21 ScriptPromise NavigatorBattery::getBattery(ScriptState* scriptState, Navigator& navigator) in getBattery() 26 ScriptPromise NavigatorBattery::getBattery(ScriptState* scriptState) in getBattery()
|
| /external/chromium_org/third_party/WebKit/Source/core/css/ |
| D | FontFaceSet.cpp | 60 ScriptPromise promise() { return m_resolver->promise(); } in promise() 129 ScriptPromise promise() { return m_resolver->promise(); } in promise() 271 ScriptPromise FontFaceSet::ready(ScriptState* scriptState) in ready() 274 return ScriptPromise(); in ready() 276 ScriptPromise promise = resolver->promise(); in ready() 445 ScriptPromise FontFaceSet::load(ScriptState* scriptState, const String& fontString, const String& t… in load() 448 return ScriptPromise(); in load() 453 ScriptPromise promise = resolver->promise(); in load() 467 ScriptPromise promise = resolver->promise(); in load()
|
| /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ |
| D | ScreenOrientation.h | 20 class ScriptPromise; variable 31 static ScriptPromise lockOrientation(ScriptState*, Screen&, const AtomicString& orientation);
|