OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptState
(Results
101 - 125
of
252
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchEvent.h
29
void respondWith(
ScriptState
*, const ScriptValue&);
FetchEvent.cpp
29
void FetchEvent::respondWith(
ScriptState
*
scriptState
, const ScriptValue& value)
31
m_observer->respondWith(
scriptState
, value);
InstallPhaseEvent.cpp
53
void InstallPhaseEvent::waitUntil(
ScriptState
*
scriptState
, const ScriptValue& value)
55
m_observer->waitUntil(
scriptState
, value);
ServiceWorker.h
47
class
ScriptState
;
ServiceWorkerClients.cpp
56
ScriptPromise ServiceWorkerClients::getServiced(
ScriptState
*
scriptState
)
58
RefPtr<ScriptPromiseResolverWithContext> resolver = ScriptPromiseResolverWithContext::create(
scriptState
);
59
ServiceWorkerGlobalScopeClient::from(
scriptState
->executionContext())->getClients(new CallbackPromiseAdapter<ClientArray, ServiceWorkerError>(resolver));
/external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaClientImpl.h
47
virtual WebCore::ScriptPromise requestPersistentQuota(WebCore::
ScriptState
*, unsigned long long newQuotaInBytes) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromiseResolver.cpp
42
ScriptPromiseResolver::ScriptPromiseResolver(
ScriptState
*
scriptState
)
43
: m_scriptState(
scriptState
)
48
m_resolver = ScriptValue(
scriptState
, v8::Promise::Resolver::New(isolate));
70
PassRefPtr<ScriptPromiseResolver> ScriptPromiseResolver::create(
ScriptState
*
scriptState
)
72
ASSERT(
scriptState
->isolate()->InContext());
73
return adoptRef(new ScriptPromiseResolver(
scriptState
));
ScriptPromiseResolverWithContext.cpp
12
ScriptPromiseResolverWithContext::ScriptPromiseResolverWithContext(
ScriptState
*
scriptState
)
13
: ActiveDOMObject(
scriptState
->executionContext())
15
, m_scriptState(
scriptState
)
57
ScriptState
::Scope scope(m_scriptState.get());
V8MutationCallback.cpp
39
V8MutationCallback::V8MutationCallback(v8::Handle<v8::Function> callback, v8::Handle<v8::Object> owner,
ScriptState
*
scriptState
)
40
: ActiveDOMCallback(
scriptState
->executionContext())
41
, m_callback(
scriptState
->isolate(), callback)
42
, m_scriptState(
scriptState
)
44
V8HiddenValue::setHiddenValue(
scriptState
->isolate(), owner, V8HiddenValue::callback(
scriptState
->isolate()), callback);
57
ScriptState
::Scope scope(m_scriptState.get());
V8WindowShell.h
36
#include "bindings/v8/
ScriptState
.h"
61
ScriptState
*
scriptState
() const { return m_scriptState.get(); }
113
RefPtr<
ScriptState
> m_scriptState;
WorkerScriptController.h
97
ScriptState
*
scriptState
() { return m_scriptState.get(); }
110
RefPtr<
ScriptState
> m_scriptState;
ScriptDebugServer.h
50
class
ScriptState
;
103
virtual void compileScript(
ScriptState
*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace);
105
virtual void runScript(
ScriptState
*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace);
123
void handleProgramBreak(
ScriptState
* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Value> exception, v8::Handle<v8::Array> hitBreakpoints);
136
RefPtr<
ScriptState
> m_pausedScriptState;
ScriptPromiseResolver.h
35
#include "bindings/v8/
ScriptState
.h"
71
static PassRefPtr<ScriptPromiseResolver> create(
ScriptState
*);
141
explicit ScriptPromiseResolver(
ScriptState
*);
143
// FIXME: Remove this once ScriptValue::
scriptState
() becomes available.
144
RefPtr<
ScriptState
> m_scriptState;
ScriptController.cpp
255
ScriptState
*
scriptState
=
ScriptState
::forMainWorld(frame);
256
if (
scriptState
->contextIsEmpty())
259
ScriptState
::Scope scope(
scriptState
);
263
scriptState
->context()->Global()->Set(v8String(m_isolate, key), value);
362
ScriptState
*
scriptState
=
ScriptState
::forMainWorld(frame)
[
all
...]
ScriptFunction.cpp
19
ScriptValue result = function->call(ScriptValue(
ScriptState
::current(isolate), value));
PageScriptDebugServer.h
67
virtual void compileScript(
ScriptState
*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE;
69
virtual void runScript(
ScriptState
*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.cpp
69
ScriptValue IDBIndex::keyPath(
ScriptState
*
scriptState
) const
71
return idbAnyToScriptValue(
scriptState
, IDBAny::create(m_metadata.keyPath));
74
IDBRequest* IDBIndex::openCursor(
ScriptState
*
scriptState
, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
93
IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(
scriptState
->executionContext(), range, exceptionState);
102
return openCursor(
scriptState
, keyRange, direction);
105
IDBRequest* IDBIndex::openCursor(
ScriptState
*
scriptState
, IDBKeyRange* keyRange, blink::WebIDBCursorDirection direction)
107
IDBRequest* request = IDBRequest::create(
scriptState
, IDBAny::create(this), m_transaction.get())
[
all
...]
IDBKeyRange.h
64
ScriptValue lowerValue(
ScriptState
*) const;
65
ScriptValue upperValue(
ScriptState
*) const;
IDBDatabase.idl
34
[CallWith=
ScriptState
] readonly attribute any version;
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
NavigatorWebMIDI.cpp
69
ScriptPromise NavigatorWebMIDI::requestMIDIAccess(
ScriptState
*
scriptState
, Navigator& navigator, const Dictionary& options)
71
return NavigatorWebMIDI::from(navigator).requestMIDIAccess(
scriptState
, options);
74
ScriptPromise NavigatorWebMIDI::requestMIDIAccess(
ScriptState
*
scriptState
, const Dictionary& options)
77
RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(
scriptState
);
84
return MIDIAccessInitializer::start(
scriptState
, MIDIOptions(options));
/external/chromium_org/third_party/WebKit/Source/core/css/
FontFace.h
83
ScriptPromise loaded(
ScriptState
*
scriptState
) { return fontStatusPromise(
scriptState
); }
85
ScriptPromise load(
ScriptState
*);
117
ScriptPromise fontStatusPromise(
ScriptState
*);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
PageRuntimeAgent.h
34
#include "bindings/v8/
ScriptState
.h"
55
void didCreateIsolatedContext(LocalFrame*,
ScriptState
*, SecurityOrigin*);
/external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryManager.h
28
ScriptPromise startRequest(
ScriptState
*);
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp
17
{{v8_class}}::{{v8_class}}(v8::Handle<v8::Function> callback,
ScriptState
*
scriptState
)
18
: ActiveDOMCallback(
scriptState
->executionContext())
19
, m_scriptState(
scriptState
)
21
m_callback.set(
scriptState
->isolate(), callback);
40
ScriptState
::Scope scope(m_scriptState.get());
/external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.cpp
87
ScriptPromise StorageQuota::queryInfo(
ScriptState
*
scriptState
, String type)
89
RefPtr<ScriptPromiseResolverWithContext> resolver = ScriptPromiseResolverWithContext::create(
scriptState
);
92
SecurityOrigin* securityOrigin =
scriptState
->executionContext()->securityOrigin();
104
ScriptPromise StorageQuota::requestPersistentQuota(
ScriptState
*
scriptState
, unsigned long long newQuota)
106
StorageQuotaClient* client = StorageQuotaClient::from(
scriptState
->executionContext());
108
RefPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(
scriptState
);
114
return client->requestPersistentQuota(
scriptState
, newQuota);
Completed in 498 milliseconds
1
2
3
4
5
6
7
8
9
10
11