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/tests/results/
V8TestCallbackInterface.h 41 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/bindings/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;
ScriptFunctionCall.h 44 ScriptCallArgumentHandler(ScriptState* scriptState) : m_scriptState(scriptState) { }
58 RefPtr<ScriptState> m_scriptState;
ScriptPreprocessor.h 55 RefPtr<ScriptState> m_scriptState;
ScriptPromiseResolver.h 87 ASSERT(m_scriptState->isolate()->InContext());
95 ASSERT(m_scriptState->isolate()->InContext());
103 ASSERT(m_scriptState->isolate()->InContext());
109 ASSERT(m_scriptState->isolate()->InContext());
114 ASSERT(m_scriptState->isolate()->InContext());
119 ASSERT(m_scriptState->isolate()->InContext());
123 v8::Isolate* isolate() const { return m_scriptState->isolate(); }
132 return ToV8Value<ScriptPromiseResolver, v8::Handle<v8::Object> >::toV8Value(value, creationContext, m_scriptState->isolate());
138 return ToV8Value<ScriptPromiseResolver, v8::Handle<v8::Object> >::toV8Value(value, m_scriptState->context()->Global(), m_scriptState->isolate())
    [all...]
ScriptPromise.h 109 RefPtr<ScriptState> m_scriptState;
V8CustomElementLifecycleCallbacks.h 70 RefPtr<ScriptState> m_scriptState;
ScriptValue.h 49 , m_scriptState(nullptr)
57 , m_scriptState(scriptState)
60 ASSERT(isEmpty() || m_scriptState);
65 , m_scriptState(value.m_scriptState)
68 ASSERT(isEmpty() || m_scriptState);
73 return m_scriptState.get();
87 m_scriptState = value.m_scriptState;
156 mutable RefPtr<ScriptState> m_scriptState;
    [all...]
V8WindowShell.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;
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;
WorkerScriptController.h 97 ScriptState* scriptState() { return m_scriptState.get(); }
98 v8::Local<v8::Context> context() { return m_scriptState ? m_scriptState->context() : v8::Local<v8::Context>(); }
99 bool isContextInitialized() { return m_scriptState && !!m_scriptState->perContextData(); }
110 RefPtr<ScriptState> m_scriptState;
ScriptPromiseResolverWithContext.h 64 ScriptState* scriptState() { return m_scriptState.get(); }
76 ScriptState* scriptState() const { return m_scriptState.get(); }
107 return ToV8Value<ScriptPromiseResolverWithContext, v8::Handle<v8::Object> >::toV8Value(value, m_scriptState->context()->Global(), m_scriptState->isolate());
121 ScriptState::Scope scope(m_scriptState.get());
122 m_value.set(m_scriptState->isolate(), toV8Value(value));
132 const RefPtr<ScriptState> m_scriptState;
ScriptState.h 124 : m_scriptState(scriptState)
126 if (m_scriptState)
127 m_context.set(m_scriptState->isolate(), m_scriptState->context());
130 ScriptState* operator->() const { return m_scriptState.get(); }
131 ScriptState* get() const { return m_scriptState.get(); }
134 m_scriptState = nullptr;
139 RefPtr<ScriptState> m_scriptState;
V8Binding.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp 19 , m_scriptState(scriptState)
36 v8::Isolate* isolate = m_scriptState->isolate();
37 if (m_scriptState->contextIsEmpty())
40 ScriptState::Scope scope(m_scriptState.get());
65 return invokeCallback(m_scriptState.get(), m_callback.newLocal(isolate), {{this_handle_parameter}}{{method.arguments | length}}, argv);
67 invokeCallback(m_scriptState.get(), m_callback.newLocal(isolate), {{this_handle_parameter}}{{method.arguments | length}}, argv);
callback_interface.h 33 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListListener.h 51 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 75 ScriptStateProtectingContext m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.h 147 RefPtr<ScriptState> m_scriptState;
IDBObjectStore.cpp 331 , m_scriptState(scriptState)
341 ASSERT(m_scriptState->executionContext() == executionContext);
360 ScriptValue value = cursor->value(m_scriptState.get());
363 generateIndexKeysForValue(m_scriptState->isolate(), m_indexMetadata, value, &indexKeys);
378 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WindowCustom.cpp 294 : m_scriptState(scriptState)
303 RefPtr<ScriptState> m_scriptState;
312 v8::Handle<v8::Context> context = toV8Context(dialogFrame->frame(), m_scriptState->world());
318 m_scriptStateForDialogFrame->context()->Global()->Set(v8AtomicString(m_scriptState->isolate(), "dialogArguments"), m_dialogArguments);

Completed in 185 milliseconds

1 2