OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptPromise
(Results
26 - 50
of
93
) sorted by null
1
2
3
4
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchManager.h
8
#include "bindings/core/v8/
ScriptPromise
.h"
23
ScriptPromise
fetch(ScriptState*, const FetchRequestData*);
Body.cpp
17
ScriptPromise
Body::readAsync(ScriptState* scriptState, ResponseType type)
20
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError("Already read", scriptState->isolate()));
30
return
ScriptPromise
();
37
ScriptPromise
promise = m_resolver->promise();
80
ScriptPromise
Body::arrayBuffer(ScriptState* scriptState)
85
ScriptPromise
Body::blob(ScriptState* scriptState)
90
ScriptPromise
Body::formData(ScriptState* scriptState)
95
ScriptPromise
Body::json(ScriptState* scriptState)
100
ScriptPromise
Body::text(ScriptState* scriptState)
InstallEvent.cpp
57
ScriptPromise
InstallEvent::reloadAll(ScriptState* scriptState)
63
return
ScriptPromise
::reject(scriptState, v8::Null(scriptState->isolate()));
InstallEvent.h
34
#include "bindings/core/v8/
ScriptPromise
.h"
50
ScriptPromise
reloadAll(ScriptState*);
ServiceWorkerGlobalScope.cpp
33
#include "bindings/core/v8/
ScriptPromise
.h"
92
ScriptPromise
ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request)
95
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError("ServiceWorkerGlobalScope is shutting down.", scriptState->isolate()));
103
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError(exceptionState.message(), scriptState->isolate()));
108
ScriptPromise
ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, Request* request, const Dictionary& requestInit)
111
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError("ServiceWorkerGlobalScope is shutting down.", scriptState->isolate()));
119
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError(exceptionState.message(), scriptState->isolate()));
124
ScriptPromise
ServiceWorkerGlobalScope::fetch(ScriptState* scriptState, const String& urlstring)
127
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError("ServiceWorkerGlobalScope is shutting down.", scriptState->isolate()));
135
return
ScriptPromise
::reject(scriptState, V8ThrowException::createTypeError(exceptionState.message(), scriptState->isol (…)
[
all
...]
CacheStorage.cpp
151
ScriptPromise
CacheStorage::get(ScriptState* scriptState, const String& cacheName)
154
const
ScriptPromise
promise = resolver->promise();
170
ScriptPromise
CacheStorage::has(ScriptState* scriptState, const String& cacheName)
173
const
ScriptPromise
promise = resolver->promise();
188
ScriptPromise
CacheStorage::createFunction(ScriptState* scriptState, const String& cacheName)
191
const
ScriptPromise
promise = resolver->promise();
201
ScriptPromise
CacheStorage::deleteFunction(ScriptState* scriptState, const String& cacheName)
204
const
ScriptPromise
promise = resolver->promise();
214
ScriptPromise
CacheStorage::keys(ScriptState* scriptState)
217
const
ScriptPromise
promise = resolver->promise()
[
all
...]
ServiceWorkerClients.cpp
54
ScriptPromise
ServiceWorkerClients::getAll(ScriptState* scriptState, const ServiceWorkerClientQueryParams& options)
57
ScriptPromise
promise = resolver->promise();
ServiceWorkerRegistration.h
20
class
ScriptPromise
;
56
ScriptPromise
unregister(ScriptState*);
CacheTest.cpp
10
#include "bindings/core/v8/
ScriptPromise
.h"
174
ScriptValue getRejectValue(
ScriptPromise
& promise)
182
std::string getRejectString(
ScriptPromise
& promise)
188
ScriptValue getResolveValue(
ScriptPromise
& promise)
196
std::string getResolveString(
ScriptPromise
& promise)
272
ScriptPromise
matchPromise = cache->match(scriptState(), url, *queryParams);
306
ScriptPromise
matchResult = cache->match(scriptState(), request, *queryParams);
310
ScriptPromise
stringMatchResult = cache->match(scriptState(), url, *queryParams);
316
ScriptPromise
matchAllResult = cache->matchAll(scriptState(), request, *queryParams);
320
ScriptPromise
stringMatchAllResult = cache->matchAll(scriptState(), url, *queryParams)
[
all
...]
ServiceWorkerContainer.cpp
34
#include "bindings/core/v8/
ScriptPromise
.h"
103
ScriptPromise
ServiceWorkerContainer::registerServiceWorker(ScriptState* scriptState, const String& url, const RegistrationOptionList& options)
107
ScriptPromise
promise = resolver->promise();
156
ScriptPromise
ServiceWorkerContainer::getRegistration(ScriptState* scriptState, const String& documentURL)
160
ScriptPromise
promise = resolver->promise();
187
ScriptPromise
ServiceWorkerContainer::ready(ScriptState* callerState)
190
return
ScriptPromise
();
195
return
ScriptPromise
::rejectWithDOMException(callerState, DOMException::create(NotSupportedError, "'ready' is only supported in pages."));
/external/chromium_org/third_party/WebKit/Source/modules/battery/
NavigatorBattery.cpp
21
ScriptPromise
NavigatorBattery::getBattery(ScriptState* scriptState, Navigator& navigator)
26
ScriptPromise
NavigatorBattery::getBattery(ScriptState* scriptState)
/external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
CredentialsContainer.cpp
9
#include "bindings/core/v8/
ScriptPromise
.h"
113
ScriptPromise
CredentialsContainer::request(ScriptState* scriptState, const Dictionary&)
116
ScriptPromise
promise = resolver->promise();
125
ScriptPromise
CredentialsContainer::notifySignedIn(ScriptState* scriptState, Credential* credential)
128
ScriptPromise
promise = resolver->promise();
136
ScriptPromise
CredentialsContainer::notifyFailedSignIn(ScriptState* scriptState, Credential* credential)
139
ScriptPromise
promise = resolver->promise();
147
ScriptPromise
CredentialsContainer::notifySignedOut(ScriptState* scriptState)
150
ScriptPromise
promise = resolver->promise();
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientation.h
20
class
ScriptPromise
;
46
ScriptPromise
lock(ScriptState*, const AtomicString& orientation);
/external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.cpp
34
#include "bindings/core/v8/
ScriptPromise
.h"
85
ScriptPromise
StorageQuota::queryInfo(ScriptState* scriptState, String type)
88
ScriptPromise
promise = resolver->promise();
102
ScriptPromise
StorageQuota::requestPersistentQuota(ScriptState* scriptState, unsigned long long newQuota)
107
ScriptPromise
promise = resolver->promise();
/external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaClientImpl.h
47
virtual
ScriptPromise
requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) OVERRIDE;
StorageQuotaClientImpl.cpp
34
#include "bindings/core/v8/
ScriptPromise
.h"
77
ScriptPromise
StorageQuotaClientImpl::requestPersistentQuota(ScriptState* scriptState, unsigned long long newQuotaInBytes)
80
ScriptPromise
promise = resolver->promise();
/external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStream.h
8
#include "bindings/core/v8/
ScriptPromise
.h"
51
ScriptPromise
wait(ScriptState*);
52
ScriptPromise
cancel(ScriptState*, ScriptValue reason);
53
ScriptPromise
closed(ScriptState*);
ReadableStream.cpp
119
ScriptPromise
ReadableStream::wait(ScriptState* scriptState)
126
ScriptPromise
ReadableStream::cancel(ScriptState* scriptState, ScriptValue reason)
130
ScriptPromise
promise = resolver->promise();
135
return
ScriptPromise
::cast(scriptState, v8::Undefined(scriptState->isolate()));
151
ScriptPromise
ReadableStream::closed(ScriptState* scriptState)
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
NavigatorWebMIDI.cpp
34
#include "bindings/core/v8/
ScriptPromise
.h"
73
ScriptPromise
NavigatorWebMIDI::requestMIDIAccess(ScriptState* scriptState, Navigator& navigator, const MIDIOptions& options)
78
ScriptPromise
NavigatorWebMIDI::requestMIDIAccess(ScriptState* scriptState, const MIDIOptions& options)
82
ScriptPromise
promise = resolver->promise();
MIDIAccessInitializer.h
8
#include "bindings/core/v8/
ScriptPromise
.h"
40
static
ScriptPromise
start(ScriptState* scriptState, const MIDIOptions& options)
60
ScriptPromise
start();
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp
90
static
ScriptPromise
startCryptoOperation(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, WebCryptoOperation operationType, const ArrayPiece& signature, const ArrayPiece& dataBuffer)
93
ScriptPromise
promise = result->promise();
135
return
ScriptPromise
();
196
ScriptPromise
SubtleCrypto::encrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
201
ScriptPromise
SubtleCrypto::decrypt(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
206
ScriptPromise
SubtleCrypto::sign(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& data)
211
ScriptPromise
SubtleCrypto::verifySignature(ScriptState* scriptState, const Dictionary& rawAlgorithm, CryptoKey* key, const ArrayPiece& signature, const ArrayPiece& data)
216
ScriptPromise
SubtleCrypto::digest(ScriptState* scriptState, const Dictionary& rawAlgorithm, const ArrayPiece& data)
221
ScriptPromise
SubtleCrypto::generateKey(ScriptState* scriptState, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages)
224
ScriptPromise
promise = result->promise()
[
all
...]
CryptoResultImpl.h
34
#include "bindings/core/v8/
ScriptPromise
.h"
71
//
ScriptPromise
.
72
ScriptPromise
promise();
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.cpp
30
#include "bindings/core/v8/
ScriptPromise
.h"
188
ScriptPromise
promise() { return m_resolver->promise(); }
278
ScriptPromise
MediaKeySession::closed(ScriptState* scriptState)
283
ScriptPromise
MediaKeySession::generateRequest(ScriptState* scriptState, const String& initDataType, ArrayBuffer* initData)
289
ScriptPromise
MediaKeySession::generateRequest(ScriptState* scriptState, const String& initDataType, ArrayBufferView* initData)
295
ScriptPromise
MediaKeySession::generateRequestInternal(ScriptState* scriptState, const String& initDataType, PassRefPtr<ArrayBuffer> initData)
306
return
ScriptPromise
::rejectWithDOMException(
316
return
ScriptPromise
::rejectWithDOMException(
323
return
ScriptPromise
::rejectWithDOMException(
335
return
ScriptPromise
::rejectWithDOMException
[
all
...]
MediaKeys.h
29
#include "bindings/core/v8/
ScriptPromise
.h"
49
static
ScriptPromise
create(ScriptState*, const String& keySystem);
MediaKeys.cpp
70
static
ScriptPromise
createRejectedPromise(ScriptState* scriptState, ExceptionCode error, const String& errorMessage)
72
return
ScriptPromise
::rejectWithDOMException(scriptState, DOMException::create(error, errorMessage));
80
static
ScriptPromise
create(ScriptState*, const String& keySystem);
91
ScriptPromise
MediaKeysInitializer::create(ScriptState* scriptState, const String& keySystem)
147
ScriptPromise
MediaKeys::create(ScriptState* scriptState, const String& keySystem)
Completed in 701 milliseconds
1
2
3
4