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

1 2 3 4 5 6 78 91011

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.cpp 351 ScriptState* scriptState = m_pausedScriptState ? m_pausedScriptState.get() : ScriptState::current(m_isolate);
352 ScriptState::Scope scope(scriptState);
353 return ScriptValue(scriptState, toV8(currentCallFrame.release(), scriptState->context()->Global(), m_isolate));
391 ScriptState* pausedScriptState = ScriptState::current(thisPtr->m_isolate);
397 void ScriptDebugServer::handleProgramBreak(ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Value> exception, v8::Ha (…)
    [all...]
ScriptEventListener.cpp 35 #include "bindings/v8/ScriptState.h"
141 return ScriptValue(ScriptState::from(context), function);
144 ScriptState* eventListenerHandlerScriptState(LocalFrame* frame, EventListener* listener)
151 return ScriptState::from(v8Context);
WorkerScriptController.cpp 127 m_scriptState = ScriptState::create(context, m_world);
129 ScriptState::Scope scope(m_scriptState.get());
161 ScriptState::Scope scope(m_scriptState.get());
V8ErrorHandler.cpp 46 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
47 : V8EventListener(listener, isInline, scriptState)
61 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
65 v8::Local<v8::Object> thisValue = scriptState()->context()->Global();
74 if (scriptState()->executionContext()->isWorkerGlobalScope())
75 returnValue = V8ScriptRunner::callFunction(callFunction, scriptState()->executionContext(), thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
77 returnValue = ScriptController::callFunction(scriptState()->executionContext(), callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
V8NodeFilterCondition.cpp 43 V8NodeFilterCondition::V8NodeFilterCondition(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, ScriptState* scriptState)
44 : m_scriptState(scriptState)
50 V8HiddenValue::setHiddenValue(scriptState->isolate(), owner, V8HiddenValue::condition(scriptState->isolate()), filter);
51 m_filter.set(scriptState->isolate(), filter);
V8PerIsolateData.h 30 #include "bindings/v8/ScriptState.h"
117 RefPtr<ScriptState> m_scriptRegexpScriptState;
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPDirectiveList.h 39 bool allowEval(ScriptState*, ContentSecurityPolicy::ReportingStatus) const;
84 void reportViolationWithState(const String& directiveText, const String& effectiveDirective, const String& consoleMessage, const KURL& blockedURL, ScriptState*) const;
96 bool checkEvalAndReportViolation(SourceListDirective*, const String& consoleMessage, ScriptState*) const;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorProfilerAgent.cpp 66 static PassRefPtr<TypeBuilder::Debugger::Location> currentDebugLocation(ScriptState* scriptState)
68 RefPtrWillBeRawPtr<ScriptCallStack> callStack(createScriptCallStackForConsole(scriptState, 1));
106 void InspectorProfilerAgent::consoleProfile(const String& title, ScriptState* scriptState)
112 m_frontend->consoleProfileStarted(id, currentDebugLocation(scriptState), title.isNull() ? 0 : &title);
115 void InspectorProfilerAgent::consoleProfileEnd(const String& title, ScriptState* scriptState)
142 RefPtr<TypeBuilder::Debugger::Location> location = currentDebugLocation(scriptState);
InspectorDebuggerAgent.h 33 #include "bindings/v8/ScriptState.h"
97 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned long);
194 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) OVERRIDE FINAL;
230 RefPtr<ScriptState> m_pausedScriptState;
InjectedScript.h 104 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
InjectedScriptBase.cpp 68 return m_inspectedStateAccessCheck(m_injectedScriptObject.scriptState());
79 ExecutionContext* executionContext = m_injectedScriptObject.scriptState()->executionContext();
85 ScriptState* scriptState = m_injectedScriptObject.scriptState();
87 if (scriptState) {
88 evalIsDisabled = !scriptState->evalEnabled();
91 scriptState->setEvalEnabled(true);
97 scriptState->setEvalEnabled(false);
116 *result = resultValue.toJSONValue(m_injectedScriptObject.scriptState());
    [all...]
InjectedScriptHost.cpp 90 ScriptValue InjectedScriptHost::InspectableObject::get(ScriptState*)
InspectorCanvasAgent.h 35 #include "bindings/v8/ScriptState.h"
91 InjectedScriptCanvasModule injectedScriptCanvasModule(ErrorString*, ScriptState*);
InspectorInspectorAgent.cpp 78 int injectedScriptId = m_injectedScriptManager->injectedScriptIdFor(ScriptState::forMainWorld(frame));
JavaScriptCallFrame.cpp 166 ScriptValue JavaScriptCallFrame::setVariableValue(ScriptState* scriptState, int scopeNumber, const String& variableName, const ScriptValue& newValue)
168 ScriptState::Scope scriptScope(scriptState);
176 return ScriptValue(scriptState, setVariableValueFunction->Call(callFrame, WTF_ARRAY_LENGTH(argv), argv));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 67 Node* InjectedScriptHost::scriptValueAsNode(ScriptState* scriptState, ScriptValue value)
69 ScriptState::Scope scope(scriptState);
75 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* scriptState, Node* node)
77 ScriptState::Scope scope(scriptState);
78 v8::Isolate* isolate = scriptState->isolate();
79 ExceptionState exceptionState(ExceptionState::ExecutionContext, "nodeAsScriptValue", "InjectedScriptHost", scriptState->context()->Global(), isolate)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.cpp 31 #include "bindings/v8/ScriptState.h"
54 static PassRefPtrWillBeRawPtr<LoadFontPromiseResolver> create(FontFaceArray faces, ScriptState* scriptState)
56 return adoptRefWillBeNoop(new LoadFontPromiseResolver(faces, scriptState));
68 LoadFontPromiseResolver(FontFaceArray faces, ScriptState* scriptState)
71 , m_resolver(ScriptPromiseResolverWithContext::create(scriptState))
119 static PassOwnPtr<FontsReadyPromiseResolver> create(ScriptState* scriptState)
121 return adoptPtr(new FontsReadyPromiseResolver(scriptState));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameConsole.cpp 64 void FrameConsole::addMessage(MessageSource source, MessageLevel level, const String& message, const String& url, unsigned lineNumber, unsigned columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, ScriptState* scriptState, unsigned long requestIdentifier)
81 InspectorInstrumentation::addMessageToConsole(context, source, LogMessageType, level, message, url, lineNumber, columnNumber, scriptState, requestIdentifier);
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryManager.cpp 34 ScriptPromise BatteryManager::startRequest(ScriptState* scriptState)
39 m_resolver = ScriptPromiseResolverWithContext::create(scriptState);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.h 73 ScriptValue version(ScriptState*) const;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.cpp 80 void RespondWithObserver::respondWith(ScriptState* scriptState, const ScriptValue& value)
86 ScriptPromise::cast(scriptState, value).then(
WaitUntilObserver.cpp 78 void WaitUntilObserver::waitUntil(ScriptState* scriptState, const ScriptValue& value)
81 ScriptPromise::cast(scriptState, value).then(
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 144 {{argument.name}} = V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), info[1], false, ListenerFindOnly);
146 {{argument.name}} = V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), info[1], false, ListenerFindOrCreate);
159 {{argument.name}} = V8{{argument.idl_type}}::create(v8::Handle<v8::Function>::Cast(info[{{argument.index}}]), ScriptState::current(info.GetIsolate()));
168 {{argument.name}} = {% if argument.is_nullable %}info[{{argument.index}}]->IsNull() ? nullptr : {% endif %}V8{{argument.idl_type}}::create(v8::Handle<v8::Function>::Cast(info[{{argument.index}}]), ScriptState::current(info.GetIsolate()));
235 ScriptState* scriptState = ScriptState::current(info.GetIsolate());
241 RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(createScriptArguments(scriptState, info, {{method.number_of_arguments}}));
406 ScriptState* scriptState = ScriptState::from(info.GetIsolate()->GetCurrentContext())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 287 void WorkerGlobalScope::addMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState* scriptState)
294 addMessageToWorkerConsole(source, level, message, sourceURL, lineNumber, nullptr, scriptState);
297 void WorkerGlobalScope::addMessageToWorkerConsole(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, ScriptState* scriptState)
303 InspectorInstrumentation::addMessageToConsole(this, source, LogMessageType, level, message, sourceURL, lineNumber, 0, scriptState);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestObject.idl 166 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute;
167 [CallWith=ExecutionContext|ScriptState] attribute any callWithExecutionContextAndScriptStateAnyAttribute;
451 [CallWith=ScriptState] void callWithScriptStateVoidMethod();
452 [CallWith=ScriptState] long callWithScriptStateLongMethod();
453 [CallWith=ScriptState&ExecutionContext] void callWithScriptStateExecutionContextVoidMethod();
454 [CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethod();
455 [CallWith=ScriptState&ScriptArguments] void callWithScriptStateScriptArgumentsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg);
    [all...]

Completed in 983 milliseconds

1 2 3 4 5 6 78 91011