HomeSort by relevance Sort by last modified time
    Searched defs:m_scriptState (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScheduledAction.h 61 ScriptStateProtectingContext m_scriptState;
V8MutationCallback.h 57 RefPtr<ScriptState> m_scriptState;
V8NodeFilterCondition.h 82 RefPtr<ScriptState> m_scriptState;
CustomElementConstructorBuilder.h 84 RefPtr<ScriptState> m_scriptState;
ScriptFunction.h 55 ScriptState* scriptState() const { return m_scriptState.get(); }
60 : m_scriptState(scriptState)
70 RefPtr<ScriptState> m_scriptState;
ScriptFunctionCall.h 44 ScriptCallArgumentHandler(ScriptState* scriptState) : m_scriptState(scriptState) { }
59 RefPtr<ScriptState> m_scriptState;
ScriptPreprocessor.h 55 RefPtr<ScriptState> m_scriptState;
ScriptPromise.h 140 RefPtr<ScriptState> m_scriptState;
V8CustomElementLifecycleCallbacks.h 70 RefPtr<ScriptState> m_scriptState;
ScriptValue.h 50 : m_scriptState(scriptState)
53 ASSERT(isEmpty() || m_scriptState);
57 : m_scriptState(value.m_scriptState)
60 ASSERT(isEmpty() || m_scriptState);
65 return m_scriptState.get();
70 return m_scriptState ? m_scriptState->isolate() : v8::Isolate::GetCurrent();
76 m_scriptState = value.m_scriptState;
    [all...]
WindowProxy.h 60 v8::Local<v8::Context> context() const { return m_scriptState ? m_scriptState->context() : v8::Local<v8::Context>(); }
61 ScriptState* scriptState() const { return m_scriptState.get(); }
73 bool isContextInitialized() { return m_scriptState && !!m_scriptState->perContextData(); }
113 RefPtr<ScriptState> m_scriptState;
WorkerScriptController.h 80 ScriptState* scriptState() { return m_scriptState.get(); }
83 v8::Local<v8::Context> context() { return m_scriptState ? m_scriptState->context() : v8::Local<v8::Context>(); }
88 bool isContextInitialized() { return m_scriptState && !!m_scriptState->perContextData(); }
95 RefPtr<ScriptState> m_scriptState;
V8AbstractEventListener.h 116 ASSERT(m_scriptState);
117 return m_scriptState.get();
119 void setScriptState(ScriptState* scriptState) { m_scriptState = scriptState; }
149 // For V8LazyEventListener, m_scriptState can be 0 until V8LazyEventListener is actually used.
150 // m_scriptState is set lazily because V8LazyEventListener doesn't know the associated frame
152 RefPtr<ScriptState> m_scriptState;
ScriptPromiseResolver.h 65 ScriptState* scriptState() { return m_scriptState.get(); }
77 ScriptState* scriptState() const { return m_scriptState.get(); }
109 return V8ValueTraits<T>::toV8Value(value, m_scriptState->context()->Global(), m_scriptState->isolate());
123 ScriptState::Scope scope(m_scriptState.get());
124 m_value.set(m_scriptState->isolate(), toV8Value(value));
134 const RefPtr<ScriptState> m_scriptState;
ScriptState.h 127 : m_scriptState(scriptState)
129 if (m_scriptState)
130 m_context.set(m_scriptState->isolate(), m_scriptState->context());
133 ScriptState* operator->() const { return m_scriptState.get(); }
134 ScriptState* get() const { return m_scriptState.get(); }
137 m_scriptState = nullptr;
142 RefPtr<ScriptState> m_scriptState;
V8Binding.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestCallbackInterface.h 41 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp 19 , m_scriptState(scriptState)
36 if (m_scriptState->contextIsValid())
39 ScriptState::Scope scope(m_scriptState.get());
63 {% set this_handle_parameter = 'thisHandle, ' if method.call_with_this_handle else 'm_scriptState->context()->Global(), ' %}
67 ScriptController::callFunction(m_scriptState->executionContext(), m_callback.newLocal(m_scriptState->isolate()), {{this_handle_parameter}}{{method.arguments | length}}, argv, m_scriptState->isolate());
70 ScriptController::callFunction(m_scriptState->executionContext(), m_callback.newLocal(m_scriptState->isolate()), {{this_handle_parameter}}{{method.arguments | length}}, argv, m_scriptState->isolate())
    [all...]
callback_interface.h 33 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptArguments.h 52 ScriptState* scriptState() const { return m_scriptState.get(); }
61 ScriptStateProtectingContext m_scriptState;
ConsoleMessage.h 78 OwnPtr<ScriptStateProtectingContext> m_scriptState;
PromiseTracker.cpp 53 : m_scriptState(scriptState)
65 RefPtr<ScriptState> m_scriptState;
284 ScriptState* scriptState = data->m_scriptState.get();
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.h 68 ScriptState* scriptState() { return m_scriptState.get(); }
149 RefPtr<ScriptState> m_scriptState;
IDBObjectStore.cpp 352 , m_scriptState(scriptState)
362 ASSERT(m_scriptState->executionContext() == executionContext);
381 ScriptValue value = cursor->value(m_scriptState.get());
384 generateIndexKeysForValue(m_scriptState->isolate(), m_indexMetadata, value, &indexKeys);
399 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8WindowCustom.cpp 306 : m_scriptState(scriptState)
315 RefPtr<ScriptState> m_scriptState;
324 v8::Handle<v8::Context> context = toV8Context(dialogFrame->frame(), m_scriptState->world());
330 m_scriptStateForDialogFrame->context()->Global()->Set(v8AtomicString(m_scriptState->isolate(), "dialogArguments"), m_dialogArguments);

Completed in 595 milliseconds

1 2