Searched refs:TimelineModel (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTimelineFrameController.js33 * @param {!WebInspector.TimelineModel} model
44 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
45 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
70 if (record.type === WebInspector.TimelineModel.RecordType.Program) {
73 this._lastMainThreadFrame.timeByCategory["other"] += WebInspector.TimelineModel.durationInSeconds(programRecord);
86 var isFrameRecord = record.type === WebInspector.TimelineModel.RecordType.BeginFrame;
87 var programTimeCarryover = isFrameRecord && programRecord ? WebInspector.TimelineModel.endTimeInSeconds(programRecord) - WebInspector.TimelineModel.startTimeInSeconds(record) : 0;
92 } else if (record.type === WebInspector.TimelineModel.RecordType.ActivateLayerTree) {
99 WebInspector.TimelineModel
[all...]
H A DTimelineModel.js35 WebInspector.TimelineModel = function()
47 WebInspector.TimelineModel.TransferChunkLengthBytes = 5000000;
49 WebInspector.TimelineModel.RecordType = {
108 WebInspector.TimelineModel.Events = {
115 WebInspector.TimelineModel.startTimeInSeconds = function(record)
120 WebInspector.TimelineModel.endTimeInSeconds = function(record)
125 WebInspector.TimelineModel.durationInSeconds = function(record)
127 return WebInspector.TimelineModel.endTimeInSeconds(record) - WebInspector.TimelineModel.startTimeInSeconds(record);
134 WebInspector.TimelineModel
[all...]
H A DTimelinePresentationModel.js67 var recordTypes = WebInspector.TimelineModel.RecordType;
144 var recordTypes = WebInspector.TimelineModel.RecordType;
194 const recordTypes = WebInspector.TimelineModel.RecordType;
215 var recordTypes = WebInspector.TimelineModel.RecordType;
235 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel.RecordType.MarkDOMContent] = 1;
236 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel.RecordType.MarkLoad] = 1;
237 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel.RecordType.MarkFirstPaint] = 1;
238 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel.RecordType.ScheduleStyleRecalculation] = 1;
239 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel.RecordType.InvalidateLayout] = 1;
240 WebInspector.TimelinePresentationModel._hiddenRecords[WebInspector.TimelineModel
[all...]
H A DTimelineEventOverview.js34 * @param {!WebInspector.TimelineModel} model
82 if (record.type === WebInspector.TimelineModel.RecordType.BeginFrame)
84 var recordStart = Math.floor((WebInspector.TimelineModel.startTimeInSeconds(record) - timeOffset) * scale);
85 var recordEnd = Math.ceil((WebInspector.TimelineModel.endTimeInSeconds(record) - timeOffset) * scale);
H A DTimelineOverviewPane.js34 * @param {!WebInspector.TimelineModel} model
52 model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
53 model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._reset, this);
246 var start = (WebInspector.TimelineModel.startTimeInSeconds(record) - this._minimumBoundary) / this.boundarySpan() * 100;
247 var end = (WebInspector.TimelineModel.endTimeInSeconds(record) - this._minimumBoundary) / this.boundarySpan() * 100;
310 * @param {!WebInspector.TimelineModel} model
H A DTimelineMemoryOverview.js34 * @param {!WebInspector.TimelineModel} model
74 var x = Math.round((WebInspector.TimelineModel.endTimeInSeconds(r) - minTime) * xFactor);
H A DTimelinePanel.js35 importScript("TimelineModel.js");
57 this._model = new WebInspector.TimelineModel();
59 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onTimelineEventRecorded, this);
60 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
61 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this);
62 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStopped, this._onRecordingStopped, this);
720 var frameMarker = WebInspector.TimelinePresentationModel.createEventDivider(WebInspector.TimelineModel.RecordType.BeginFrame);
758 if (record.type === WebInspector.TimelineModel.RecordType.Program)
761 if (record.type === WebInspector.TimelineModel.RecordType.GPUTask) {
763 return WebInspector.TimelineModel
[all...]
H A DMemoryStatistics.js33 * @param {!WebInspector.TimelineModel} model
45 model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
46 model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
/external/chromium_org/chrome/test/functional/tracing/
H A Dtimeline_model_shim.js6 tracing.TimelineModel.apply(this, arguments);
10 __proto__: tracing.TimelineModel.prototype,
H A Dtracer.py8 from timeline_model import TimelineModel namespace
14 """Controlls chrome and system tracing, returning a TimelineModel."""
60 """End tracing and return a TimelineModel.
63 an instance of a TimelineModel which contains the results of the trace
65 return TimelineModel(
H A Dtimeline_model.py9 class TimelineModel(object): class in inherits:object
10 """A proxy for about:tracing's TimelineModel class.
/external/chromium_org/tools/telemetry/telemetry/core/timeline/
H A Dtrace_event_importer_unittest.py41 m = timeline_model.TimelineModel(event_data=events)
92 m = timeline_model.TimelineModel(event_data=events)
108 m = timeline_model.TimelineModel(event_data=events)
133 m = timeline_model.TimelineModel(event_data=events,
166 m = timeline_model.TimelineModel(event_data=events)
184 m = timeline_model.TimelineModel(event_data=events)
207 m = timeline_model.TimelineModel(event_data=events,
233 m = timeline_model.TimelineModel(event_data=events,
276 m = timeline_model.TimelineModel(event_data=events,
299 m = timeline_model.TimelineModel(event_dat
[all...]
H A Dinspector_importer_unittest.py114 m = model.TimelineModel(messages, shift_world_to_zero=False)
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline_model.js7 * @fileoverview TimelineModel is a parsed representation of the
109 function TimelineModel(events) {
116 TimelineModel.prototype = {
127 * the TimelineModel as processes, threads, and slices.
251 TimelineModel: TimelineModel
H A Dtimeline_view.js68 this.timelineModel_ = new gpu.TimelineModel(traceEvents);
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_timeline.py60 """Stops recording and makes a TimelineModel with the event data."""
65 self._timeline_model = model.TimelineModel(
H A Dtracing_backend.py52 return model.TimelineModel(
69 return model.TimelineModel(self._tracing_data)
/external/chromium_org/tools/perf/metrics/
H A Dspeedindex_unittest.py19 _SAMPLE_EVENTS = model.TimelineModel(event_data=_SAMPLE_DATA).GetAllEvents()
154 model.TimelineModel(event_data=raw_events).GetAllEvents())
H A Drendering_stats_unittest.py122 timeline = model.TimelineModel()
/external/chromium_org/third_party/WebKit/Source/devtools/
H A Dconcatenated_devtools_timeline_js.target.darwin-arm.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)
H A Dconcatenated_devtools_timeline_js.target.darwin-mips.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)
H A Dconcatenated_devtools_timeline_js.target.darwin-x86.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)
H A Dconcatenated_devtools_timeline_js.target.linux-arm.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)
H A Dconcatenated_devtools_timeline_js.target.linux-mips.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)
H A Dconcatenated_devtools_timeline_js.target.linux-x86.mk21 $(gyp_shared_intermediate_dir)/resources/inspector/TimelinePanel.js: $(LOCAL_PATH)/third_party/WebKit/Source/devtools/scripts/inline_js_imports.py $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/MemoryStatistics.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/PieChart.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameController.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePresentationModel.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineOverviewPane.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineEventOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineFrameOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelineMemoryOverview.js $(LOCAL_PATH)/third_party/WebKit/Source/devtools/front_end/TimelinePanel.js $(GYP_TARGET_DEPENDENCIES)

Completed in 271 milliseconds

12