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

1 2 34 5

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NodeFilterCondition.cpp 36 #include "bindings/v8/ScriptState.h"
55 short V8NodeFilterCondition::acceptNode(ScriptState* state, Node* node) const
ScriptEventListener.cpp 36 #include "bindings/v8/ScriptState.h"
130 ScriptState* eventListenerHandlerScriptState(Frame* frame, EventListener* listener)
137 return ScriptState::forContext(v8Context);
ScriptValue.cpp 35 #include "bindings/v8/ScriptState.h"
121 PassRefPtr<JSONValue> ScriptValue::toJSONValue(ScriptState* scriptState) const
123 v8::HandleScope handleScope(scriptState->isolate());
125 v8::Context::Scope contextScope(scriptState->context());
126 return v8ToJSONValue(v8Value(), JSONValue::maxDepth, scriptState->isolate());
PageScriptDebugServer.cpp 144 void PageScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage)
159 void PageScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage)
ScriptProfiler.cpp 137 ScriptState* scriptState = ScriptState::forContext(object->CreationContext());
138 return ScriptObject(scriptState, object);
241 // FIXME: This method should receive a ScriptState, from which we should retrieve an Isolate.
275 // visitNodeWrappers() should receive a ScriptState and retrieve an Isolate
276 // from the ScriptState.
ScriptDebugServer.cpp 292 *result = ScriptObject(ScriptState::current(), normalResult->ToObject());
394 ScriptState* currentCallFrameState = ScriptState::forContext(m_pausedContext);
563 void ScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage)
592 void ScriptDebugServer::runScript(ScriptState* state, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage)
V8WindowShell.cpp 250 ScriptState* scriptState = ScriptState::forContext(v8::Local<v8::Context>::New(m_isolate, context));
251 InspectorInstrumentation::didCreateIsolatedContext(m_frame, scriptState, origin);
ScriptController.cpp 504 void ScriptController::collectIsolatedContexts(Vector<std::pair<ScriptState*, SecurityOrigin*> >& result)
515 ScriptState* scriptState = ScriptState::forContext(v8Context);
516 result.append(std::pair<ScriptState*, SecurityOrigin*>(scriptState, origin));
ScriptFunctionCall.cpp 36 #include "bindings/v8/ScriptState.h"
49 if (argument.scriptState() != m_scriptState) {
117 : ScriptCallArgumentHandler(thisObject.scriptState())
185 ScriptCallback::ScriptCallback(ScriptState* state, const ScriptValue& function)
V8Initializer.cpp 148 return policy->allowEval(ScriptState::forContext(context));
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.cpp 33 #include "bindings/v8/ScriptState.h"
70 , m_scriptState(ScriptState::current())
76 ScriptState* m_scriptState;
124 : m_scriptState(ScriptState::current())
127 ScriptState* m_scriptState;
FontFace.cpp 40 #include "bindings/v8/ScriptState.h"
85 : m_scriptState(ScriptState::current())
88 ScriptState* m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 101 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
InjectedScriptBase.cpp 37 #include "bindings/v8/ScriptState.h"
67 return m_inspectedStateAccessCheck(m_injectedScriptObject.scriptState());
77 ExecutionContext* executionContext = m_injectedScriptObject.scriptState()->executionContext();
80 ScriptState* scriptState = m_injectedScriptObject.scriptState();
82 if (scriptState) {
83 evalIsDisabled = !scriptState->evalEnabled();
86 scriptState->setEvalEnabled(true);
92 scriptState->setEvalEnabled(false)
    [all...]
InjectedScriptHost.cpp 94 ScriptValue InjectedScriptHost::InspectableObject::get(ScriptState*)
PageDebuggerAgent.cpp 117 ScriptState* scriptState = mainWorldScriptState(m_pageAgent->mainFrame());
118 return injectedScriptManager()->injectedScriptFor(scriptState);
InspectorFrontendHost.cpp 34 #include "bindings/v8/ScriptState.h"
178 ScriptState* frontendScriptState = mainWorldScriptState(m_frontendPage->mainFrame());
InspectorCanvasAgent.cpp 212 ScriptState* scriptState = wrappedContext.scriptState();
214 if (scriptState)
215 domWindow = scriptState->domWindow();
225 InjectedScriptCanvasModule InspectorCanvasAgent::injectedScriptCanvasModule(ErrorString* errorString, ScriptState* scriptState)
229 InjectedScriptCanvasModule module = InjectedScriptCanvasModule::moduleForState(m_injectedScriptManager, scriptState);
246 return injectedScriptCanvasModule(errorString, scriptObject.scriptState());
258 return injectedScriptCanvasModule(errorString, injectedScript.scriptState());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageConsole.cpp 66 void PageConsole::addMessage(MessageSource source, MessageLevel level, const String& message, const String& url, unsigned lineNumber, unsigned columnNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state, unsigned long requestIdentifier)
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.h 36 #include "bindings/v8/ScriptState.h"
105 ScriptState* m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 250 void WorkerGlobalScope::addMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState* state)
260 void WorkerGlobalScope::addMessageToWorkerConsole(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state)
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 148 ScriptState* currentState = ScriptState::current();
151 ScriptState& state = *currentState;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 73 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* state, Node* node)
98 v8SetReturnValue(info, object->get(ScriptState::current()).v8Value());
312 host->inspectImpl(object.toJSONValue(ScriptState::current()), hints.toJSONValue(ScriptState::current()));
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ContentSecurityPolicy.h 29 #include "bindings/v8/ScriptState.h"
94 bool allowEval(ScriptState* = 0, ReportingStatus = SendReport) const;
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestObject.cpp 55 #include "bindings/v8/ScriptState.h"
    [all...]

Completed in 479 milliseconds

1 2 34 5