Home
last modified time | relevance | path

Searched refs:callFrame (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInjectedScriptSource.js627 wrapCallFrames: function(callFrame) argument
629 if (!callFrame)
635 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame));
636 callFrame = callFrame.caller;
637 } while (callFrame);
653 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
654 if (!callFrame)
656 …return this._evaluateAndWrap(callFrame.evaluate, callFrame, expression, objectGroup, true, injectC…
666 var callFrame = this.callFrameForId(topCallFrame, callFrameId);
667 if (!callFrame)
[all …]
DJavaScriptCallFrame.cpp39 …ame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) in JavaScriptCallFrame() argument
42 , m_callFrame(m_isolate, callFrame) in JavaScriptCallFrame()
125 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); in stepInPositions() local
126 …v8::Handle<v8::Function> stepInPositions = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicS… in stepInPositions()
127 v8::Handle<v8::Value> result = stepInPositions->Call(callFrame, 0, 0); in stepInPositions()
148 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); in evaluate() local
149 …v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicStri… in evaluate()
151 return evalFunction->Call(callFrame, 1, argv); in evaluate()
156 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); in restart() local
157 …v8::Handle<v8::Function> restartFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicS… in restart()
[all …]
DJavaScriptCallFrame.h47 …aScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) in create() argument
49 return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame)); in create()
73 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
DInjectedScriptCanvasModuleSource.js235 callFrame: function(index) method in StackTrace
299 callFrame: function(index) method in StackTraceV8
4344 var callFrame = stackTrace ? stackTrace.callFrame(0) || {} : {};
4347 item.sourceURL = callFrame.sourceURL;
4348 item.lineNumber = callFrame.lineNumber;
4349 item.columnNumber = callFrame.columnNumber;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DScopeChainSidebarPane.js43 update: function(callFrame) argument
47 if (!callFrame) {
68 var scopeChain = callFrame.scopeChain;
83 if (callFrame.this)
84 … WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(callFrame.this)));
92 if (callFrame.returnValue)
93 …or.RemoteObjectProperty("<return>", WebInspector.RemoteObject.fromPayload(callFrame.returnValue)));
121 …var scopeRef = declarativeScope ? new WebInspector.ScopeRef(i, callFrame.id, undefined) : undefine…
DDebuggerModel.js571 setSelectedCallFrame: function(callFrame) argument
573 this._selectedCallFrame = callFrame;
577 … this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.CallFrameSelected, callFrame);
593 var callFrame = this.selectedCallFrame();
594 return callFrame ? callFrame.id : undefined;
835 var callFrame = callFrames[i];
836 var script = WebInspector.debuggerModel.scriptForId(callFrame.location.scriptId);
838 result.push(new WebInspector.DebuggerModel.CallFrame(script, callFrame, isAsync));
DCallStackSidebarPane.js270 WebInspector.CallStackSidebarPane.Placard = function(callFrame, asyncPlacard) argument
272 …WebInspector.Placard.call(this, callFrame.functionName || WebInspector.UIString("(anonymous functi…
273 callFrame.createLiveLocation(this._update.bind(this));
274 this._callFrame = callFrame;
DSourcesPanel.js648 var callFrame = WebInspector.debuggerModel.selectedCallFrame()
650 sourceFrame.setExecutionLine(uiLocation.lineNumber, callFrame);
673 var callFrame = event.data;
675 if (!callFrame)
678 this.sidebarPanes.scopechain.update(callFrame);
680 this.sidebarPanes.callstack.setSelectedCallFrame(callFrame);
681 callFrame.createLiveLocation(this._executionLineChanged.bind(this));
924 var callFrame = /** @type {!WebInspector.DebuggerModel.CallFrame} */ (event.data);
926 WebInspector.debuggerModel.setSelectedCallFrame(callFrame);
DConsoleMessage.js252 _linkifyCallFrame: function(callFrame) argument
255 var lineNumber = callFrame.lineNumber ? callFrame.lineNumber - 1 : 0;
256 var columnNumber = callFrame.columnNumber ? callFrame.columnNumber - 1 : 0;
257 …var rawLocation = new WebInspector.DebuggerModel.Location(callFrame.scriptId, lineNumber, columnNu…
DJavaScriptSourceFrame.js467 setExecutionLine: function(lineNumber, callFrame) argument
470 this._executionCallFrame = callFrame;
475 callFrame.getStepIntoLocations(locationsCallback.bind(this));
484 if (this._executionCallFrame !== callFrame || this._stepIntoMarkup)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DDebuggerScript.js220 DebuggerScript.stepOverStatement = function(execState, callFrame) argument
222 var frameMirror = callFrame ? callFrame.frameMirror : undefined;
226 DebuggerScript.stepOutOfFunction = function(execState, callFrame) argument
228 var frameMirror = callFrame ? callFrame.frameMirror : undefined;
DScriptDebugServer.cpp224 v8::Handle<v8::Value> callFrame; in stepCommandWithFrame() local
226 callFrame = v8::Undefined(m_isolate); in stepCommandWithFrame()
229 callFrame = impl->innerCallFrame(); in stepCommandWithFrame()
234 callFrame in stepCommandWithFrame()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DContentSecurityPolicy.cpp1844 const ScriptCallFrame& callFrame = stack->at(0); in gatherSecurityPolicyViolationEventData() local
1846 if (callFrame.lineNumber()) { in gatherSecurityPolicyViolationEventData()
1847 KURL source = KURL(ParsedURLString, callFrame.sourceURL()); in gatherSecurityPolicyViolationEventData()
1849 init.lineNumber = callFrame.lineNumber(); in gatherSecurityPolicyViolationEventData()
1850 init.columnNumber = callFrame.columnNumber(); in gatherSecurityPolicyViolationEventData()