Home
last modified time | relevance | path

Searched refs:execState (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
DDebuggerScript.js99 DebuggerScript.setBreakpoint = function(execState, args) argument
111 DebuggerScript.removeBreakpoint = function(execState, args) argument
136 DebuggerScript.currentCallFrame = function(execState, args) argument
138 var frameCount = execState.frameCount();
144 var frameMirror = execState.frame(i);
150 DebuggerScript.stepIntoStatement = function(execState) argument
152 execState.prepareStep(Debug.StepAction.StepIn, 1);
155 DebuggerScript.stepOverStatement = function(execState) argument
157 execState.prepareStep(Debug.StepAction.StepNext, 1);
160 DebuggerScript.stepOutOfFunction = function(execState) argument
[all …]
/external/webkit/Source/WebCore/bindings/js/
DJSInspectorFrontendHostCustom.cpp53 JSValue JSInspectorFrontendHost::platform(ExecState* execState) in platform() argument
66 return jsString(execState, platform); in platform()
69 JSValue JSInspectorFrontendHost::port(ExecState* execState) in port() argument
80 return jsString(execState, port); in port()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundle.cpp277 JSC::ExecState* execState = toJS(context); in reportException() local
280 if (!toJSDOMWindow(execState->lexicalGlobalObject())) in reportException()
283 WebCore::reportException(execState, toJS(execState, exception)); in reportException()
/external/webkit/Source/WebKit/mac/DOM/
DWebDOMOperations.mm80 ExecState* execState = toJS(context);
81 return toRef(execState, toJS(execState, core(self)->shadowRoot()));
/external/webkit/Source/WebKit/win/
DWebView.cpp5706 JSC::ExecState* execState = toJS(context); in reportException() local
5709 if (!toJSDOMWindow(execState->lexicalGlobalObject())) in reportException()
5712 WebCore::reportException(execState, toJS(execState, exception)); in reportException()
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm559 JSC::ExecState* execState = toJS(context);
562 if (!toJSDOMWindow(execState->lexicalGlobalObject()))
565 reportException(execState, toJS(execState, exception));
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-147724 (KJS::Context::execState):
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1021159 (WebCore::JavaScriptCallFrame::execState): Returns m_exec.