HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 51 - 75 of 252) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WorkerGlobalScopeEventListener.h 44 static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
46 return adoptRef(new V8WorkerGlobalScopeEventListener(listener, isInline, scriptState));
52 V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
ScriptPromise.cpp 45 // Used by ToV8Value<WithScriptState, ScriptState*>.
46 static v8::Handle<v8::Object> getCreationContext(ScriptState* scriptState)
48 return scriptState->context()->Global();
54 ScriptPromise::ScriptPromise(ScriptState* scriptState, v8::Handle<v8::Value> value)
55 : m_scriptState(scriptState)
61 m_promise = ScriptValue(scriptState, v8::Handle<v8::Value>());
62 V8ThrowException::throwTypeError("the given value is not a Promise", scriptState->isolate());
65 m_promise = ScriptValue(scriptState, value)
    [all...]
CustomElementConstructorBuilder.h 62 CustomElementConstructorBuilder(ScriptState*, const Dictionary* options);
84 RefPtr<ScriptState> m_scriptState;
ScheduledAction.h 36 #include "bindings/v8/ScriptState.h"
50 ScheduledAction(ScriptState*, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[], v8::Isolate*);
51 ScheduledAction(ScriptState*, const String&, const KURL&, v8::Isolate*);
V8Callback.cpp 39 bool invokeCallback(ScriptState* scriptState, v8::Local<v8::Function> callback, int argc, v8::Handle<v8::Value> argv[])
41 return invokeCallback(scriptState, callback, scriptState->context()->Global(), argc, argv);
44 bool invokeCallback(ScriptState* scriptState, v8::Local<v8::Function> callback, v8::Handle<v8::Value> thisValue, int argc, v8::Handle<v8::Value> argv[])
48 ScriptController::callFunction(scriptState->executionContext(), callback, thisValue, argc, argv, scriptState->isolate());
V8ErrorHandler.h 45 static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
47 return adoptRef(new V8ErrorHandler(listener, isInline, scriptState));
53 V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
V8AbstractEventListener.h 113 virtual DOMWrapperWorld& world() const { return scriptState()->world(); }
114 ScriptState* scriptState() const
119 void setScriptState(ScriptState* scriptState) { m_scriptState = scriptState; }
122 V8AbstractEventListener(bool isAttribute, ScriptState*);
152 RefPtr<ScriptState> m_scriptState;
V8EventListenerList.cpp 40 PassRefPtr<EventListener> V8EventListenerList::getEventListener(ScriptState* scriptState, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup)
42 ASSERT(!scriptState->contextIsEmpty());
47 return V8EventListenerList::findWrapper(value, scriptState);
49 if (toDOMWindow(scriptState->context()))
50 return V8EventListenerList::findOrCreateWrapper<V8EventListener>(value, isAttribute, scriptState);
51 return V8EventListenerList::findOrCreateWrapper<V8WorkerGlobalScopeEventListener>(value, isAttribute, scriptState);
V8Callback.h 44 bool invokeCallback(ScriptState*, v8::Local<v8::Function> callback, int argc, v8::Handle<v8::Value> argv[]);
45 bool invokeCallback(ScriptState*, v8::Local<v8::Function> callback, v8::Handle<v8::Value> thisValue, int argc, v8::Handle<v8::Value> argv[]);
74 return V8CallbackType::create(v8::Handle<v8::Function>::Cast(value), ScriptState::current(isolate));
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListListener.cpp 29 MediaQueryListListener::MediaQueryListListener(ScriptState* scriptState, const ScriptValue& function)
30 : m_scriptState(scriptState)
40 ScriptState::Scope scope(m_scriptState.get());
FontFaceSet.idl 45 [CallWith=ScriptState] Promise load(DOMString font, optional DOMString text = null);
46 [MeasureAs=FontFaceSetReady, CallWith=ScriptState] Promise ready();
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.h 70 ScriptValue key(ScriptState*);
71 ScriptValue primaryKey(ScriptState*);
72 ScriptValue value(ScriptState*);
73 ScriptValue source(ScriptState*) const;
75 IDBRequest* update(ScriptState*, ScriptValue&, ExceptionState&);
77 void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
78 void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
79 IDBRequest* deleteFunction(ScriptState*, ExceptionState&);
IDBOpenDBRequest.h 38 static IDBOpenDBRequest* create(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
60 IDBOpenDBRequest(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
IDBKeyRange.idl 29 [ImplementedAs=lowerValue, CallWith=ScriptState] readonly attribute any lower;
30 [ImplementedAs=upperValue, CallWith=ScriptState] readonly attribute any upper;
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientation.h 21 class ScriptState;
31 static ScriptPromise lockOrientation(ScriptState*, Screen&, const AtomicString& orientation);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScope.idl 41 [CallWith=ScriptState] Promise fetch(ScalarValueString request);
42 [CallWith=ScriptState] Promise fetch(Request request);
InstallEvent.h 50 ScriptPromise reloadAll(ScriptState*);
InstallPhaseEvent.h 48 void waitUntil(ScriptState*, const ScriptValue&);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.h 28 #include "bindings/v8/ScriptState.h"
79 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned long requestIdentifier = 0);
80 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, const String& scriptId, unsigned lineNumber, unsigned columnNumber = 0, ScriptState* = 0, unsigned long requestIdentifier = 0);
88 void consoleTimeEnd(ExecutionContext*, const String& title, ScriptState*);
89 void consoleTimeline(ExecutionContext*, const String& title, ScriptState*);
90 void consoleTimelineEnd(ExecutionContext*, const String& title, ScriptState*);
92 void consoleCount(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
InjectedScriptBase.h 34 #include "bindings/v8/ScriptState.h"
53 ScriptState* scriptState() const
56 return m_injectedScriptObject.scriptState();
60 typedef bool (*InspectedStateAccessCheck)(ScriptState*);
InjectedScriptModule.cpp 46 void InjectedScriptModule::ensureInjected(InjectedScriptManager* injectedScriptManager, ScriptState* scriptState)
48 InjectedScript injectedScript = injectedScriptManager->injectedScriptFor(scriptState);
59 ScriptState::Scope scope(scriptState);
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
NavigatorBattery.cpp 21 ScriptPromise NavigatorBattery::getBattery(ScriptState* scriptState, Navigator& navigator)
23 return NavigatorBattery::from(navigator).getBattery(scriptState);
26 ScriptPromise NavigatorBattery::getBattery(ScriptState* scriptState)
29 m_batteryManager = BatteryManager::create(scriptState->executionContext());
31 return m_batteryManager->startRequest(scriptState);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoResultImpl.cpp 35 #include "bindings/v8/ScriptState.h"
51 static WeakPtr<ScriptPromiseResolverWithContext> create(ScriptState* scriptState, CryptoResultImpl* result)
53 RefPtr<WeakResolver> p = adoptRef(new WeakResolver(scriptState, result));
65 WeakResolver(ScriptState* scriptState, CryptoResultImpl* result)
66 : ScriptPromiseResolverWithContext(scriptState)
105 PassRefPtr<CryptoResultImpl> CryptoResultImpl::create(ScriptState* scriptState)
107 return adoptRef(new CryptoResultImpl(scriptState));
    [all...]
CryptoResultImpl.h 60 static PassRefPtr<CryptoResultImpl> create(ScriptState*);
76 explicit CryptoResultImpl(ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCallbackInterface.h 19 static PassOwnPtr<V8TestCallbackInterface> create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
21 return adoptPtr(new V8TestCallbackInterface(callback, scriptState));
38 V8TestCallbackInterface(v8::Handle<v8::Function>, ScriptState*);
41 RefPtr<ScriptState> m_scriptState;

Completed in 874 milliseconds

1 23 4 5 6 7 8 91011