HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 76 - 100 of 299) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
CustomElementConstructorBuilder.h 62 CustomElementConstructorBuilder(ScriptState*, const Dictionary* options);
84 RefPtr<ScriptState> m_scriptState;
ScheduledAction.h 36 #include "bindings/core/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*);
ScriptCallStackFactory.h 42 class ScriptState;
54 PassRefPtrWillBeRawPtr<ScriptArguments> createScriptArguments(ScriptState*, const v8::FunctionCallbackInfo<v8::Value>& v8arguments, unsigned skipArgumentCount);
ScriptPromise.cpp 47 // Used by ToV8Value<WithScriptState, ScriptState*>.
48 static v8::Handle<v8::Object> getCreationContext(ScriptState* scriptState)
50 return scriptState->context()->Global();
56 ScriptPromise::InternalResolver::InternalResolver(ScriptState* scriptState)
57 : m_resolver(scriptState, v8::Promise::Resolver::New(scriptState->isolate())) { }
70 return ScriptPromise(m_resolver.scriptState(), v8Promise());
89 ScriptPromise::ScriptPromise(ScriptState* scriptState, v8::Handle<v8::Value> value
    [all...]
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*);
ScriptValue.h 34 #include "bindings/core/v8/ScriptState.h"
49 ScriptValue(ScriptState* scriptState, v8::Handle<v8::Value> value)
50 : m_scriptState(scriptState)
51 , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::create(value, scriptState->isolate()))
63 ScriptState* scriptState() const
142 PassRefPtr<JSONValue> toJSONValue(ScriptState*) const;
145 RefPtr<ScriptState> m_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->contextIsValid());
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);
ScriptStreamer.h 19 class ScriptState;
39 static void startStreaming(PendingScript&, Settings*, ScriptState*, PendingScript::Type);
105 static bool startStreamingInternal(PendingScript&, Settings*, ScriptState*, PendingScript::Type);
ScriptValue.cpp 34 #include "bindings/core/v8/ScriptState.h"
69 ScriptState::Scope scope(m_scriptState.get());
77 PassRefPtr<JSONValue> ScriptValue::toJSONValue(ScriptState* scriptState) const
79 ASSERT(!scriptState->contextIsValid());
80 ScriptState::Scope scope(scriptState);
81 return v8ToJSONValue(scriptState->isolate(), v8Value(), JSONValue::maxDepth);
V8CustomElementLifecycleCallbacks.h 35 #include "bindings/core/v8/ScriptState.h"
51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
70 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptBase.h 34 #include "bindings/core/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);
ScriptDebugListener.h 34 #include "bindings/core/v8/ScriptState.h"
80 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0;
85 virtual void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> promise, v8::Handle<v8::Value> parentPromise, int status) = 0;
  /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 36 #include "bindings/core/v8/ScriptState.h"
52 static WeakPtr<ScriptPromiseResolver> create(ScriptState* scriptState, CryptoResultImpl* result)
54 RefPtr<WeakResolver> p = adoptRef(new WeakResolver(scriptState, result));
66 WeakResolver(ScriptState* scriptState, CryptoResultImpl* result)
67 : ScriptPromiseResolver(scriptState)
106 PassRefPtr<CryptoResultImpl> CryptoResultImpl::create(ScriptState* scriptState)
108 return adoptRef(new CryptoResultImpl(scriptState));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBOpenDBRequest.h 39 static IDBOpenDBRequest* create(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
61 IDBOpenDBRequest(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientation.h 21 class ScriptState;
46 ScriptPromise lock(ScriptState*, const AtomicString& orientation);
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.idl 44 [CallWith=ScriptState] Promise load(DOMString font, optional DOMString text = " ");
45 [MeasureAs=FontFaceSetReady, CallWith=ScriptState] Promise ready();
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ExtendableEvent.h 49 void waitUntil(ScriptState*, const ScriptValue&);
InstallEvent.h 50 ScriptPromise reloadAll(ScriptState*);
ServiceWorkerGlobalScope.idl 42 [CallWith=ScriptState] Promise fetch(DOMString request, optional Dictionary requestInitDict);
43 [CallWith=ScriptState] Promise fetch(Request request, optional Dictionary requestInitDict);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIInputMap.cpp 8 #include "bindings/core/v8/ScriptState.h"
18 ScriptValue MIDIInputMap::getForBinding(ScriptState* scriptState, const String& id)
22 return ScriptValue(scriptState, toV8(result, scriptState->context()->Global(), scriptState->isolate()));
23 return ScriptValue(scriptState, v8::Undefined(scriptState->isolate()));
MIDIOutputMap.cpp 8 #include "bindings/core/v8/ScriptState.h"
18 ScriptValue MIDIOutputMap::getForBinding(ScriptState* scriptState, const String& id)
22 return ScriptValue(scriptState, toV8(result, scriptState->context()->Global(), scriptState->isolate()));
23 return ScriptValue(scriptState, v8::Undefined(scriptState->isolate()));
  /external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaClientImpl.h 47 virtual ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuotaInBytes) OVERRIDE;

Completed in 924 milliseconds

1 2 34 5 6 7 8 91011>>