Searched refs:callFrames (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DTimelineManager.js126 var callFrames = this._callFramesFromPayload(recordPayload.stackTrace);
129 if (callFrames) {
130 for (var i = 0; i < callFrames.length; ++i) {
131 if (callFrames[i].nativeCode)
133 significantCallFrame = callFrames[i];
181 this._addRecord(new WebInspector.LayoutTimelineRecord(WebInspector.LayoutTimelineRecord.EventType.InvalidateStyles, startTime, startTime, callFrames, sourceCodeLocation));
185 this._addRecord(new WebInspector.LayoutTimelineRecord(WebInspector.LayoutTimelineRecord.EventType.RecalculateStyles, startTime, endTime, callFrames, sourceCodeLocation));
192 this._addRecord(new WebInspector.LayoutTimelineRecord(WebInspector.LayoutTimelineRecord.EventType.InvalidateLayout, startTime, startTime, callFrames, sourceCodeLocation));
201 this._addRecord(new WebInspector.LayoutTimelineRecord(layoutRecordType, startTime, endTime, callFrames, sourceCodeLocation, quad.points[0].x, quad.points[0].y, quad.width, quad.height, quad));
203 this._addRecord(new WebInspector.LayoutTimelineRecord(layoutRecordType, startTime, endTime, callFrames, sourceCodeLocatio
[all...]
H A DDebuggerManager.js129 get callFrames()
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DDebuggerObserver.js56 paused: function(callFrames, reason, data)
58 WebInspector.debuggerManager.debuggerDidPause(callFrames);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DTimelineRecord.js26 WebInspector.TimelineRecord = function(type, startTime, endTime, callFrames, sourceCodeLocation)
38 this._callFrames = callFrames || null;
116 get callFrames()
H A DLayoutTimelineRecord.js26 WebInspector.LayoutTimelineRecord = function(eventType, startTime, endTime, callFrames, sourceCodeLocation, x, y, width, height, quad)
28 WebInspector.TimelineRecord.call(this, WebInspector.TimelineRecord.Type.Layout, startTime, endTime, callFrames, sourceCodeLocation);
H A DScriptTimelineRecord.js26 WebInspector.ScriptTimelineRecord = function(eventType, startTime, endTime, callFrames, sourceCodeLocation, details, profilePayload)
28 WebInspector.TimelineRecord.call(this, WebInspector.TimelineRecord.Type.Script, startTime, endTime, callFrames, sourceCodeLocation);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDebuggerSidebarPanel.js392 var callFrames = WebInspector.debuggerManager.callFrames; variable
393 if (!callFrames || !callFrames.length) {
404 for (var i = 0; i < callFrames.length; ++i) {
405 var callFrameTreeElement = new WebInspector.CallFrameTreeElement(callFrames[i]);
406 if (callFrames[i] === activeCallFrame)
417 var callFrames = WebInspector.debuggerManager.callFrames;
418 if (!callFrames)
[all...]
H A DTimelineDataGrid.js370 if (!record || !record.callFrames || !record.callFrames.length) {
458 var callFrames = this.selectedNode.record.callFrames;
459 for (var i = 0 ; i < callFrames.length; ++i) {
460 var callFrameTreeElement = new WebInspector.CallFrameTreeElement(callFrames[i]);
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DScriptDebugListener.h73 virtual void didPause(JSC::ExecState*, const Deprecated::ScriptValue& callFrames, const Deprecated::ScriptValue& exception) = 0;
H A DInjectedScript.cpp83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const Deprecated::ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>* result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) argument
86 function.appendArgument(callFrames);
145 PassRefPtr<Array<Inspector::TypeBuilder::Debugger::CallFrame>> InjectedScript::wrapCallFrames(const Deprecated::ScriptValue& callFrames) argument
149 function.appendArgument(callFrames);
H A DInjectedScript.h61 void evaluateOnCallFrame(ErrorString*, const Deprecated::ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorDebuggerAgent.h124 virtual void didPause(JSC::ExecState*, const Deprecated::ScriptValue& callFrames, const Deprecated::ScriptValue& exception) override;
H A DInspectorDebuggerAgent.cpp626 void InspectorDebuggerAgent::didPause(JSC::ExecState* scriptState, const Deprecated::ScriptValue& callFrames, const Deprecated::ScriptValue& exception) argument
630 m_currentCallStack = callFrames;

Completed in 157 milliseconds