Home
last modified time | relevance | path

Searched refs:TimelineModel (Results 1 – 25 of 54) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DTimelineUIUtilsImpl.js21 return record.type() === WebInspector.TimelineModel.RecordType.BeginFrame;
29 return record.type() === WebInspector.TimelineModel.RecordType.Program;
55 …return record.type() === WebInspector.TimelineModel.RecordType.UpdateCounters ? record.data() : nu…
64 var recordTypes = WebInspector.TimelineModel.RecordType;
112 return this.createEventDivider(WebInspector.TimelineModel.RecordType.BeginFrame);
144 WebInspector.TimelineUIUtilsImpl._coalescableRecordTypes[WebInspector.TimelineModel.RecordType.Layo…
145 WebInspector.TimelineUIUtilsImpl._coalescableRecordTypes[WebInspector.TimelineModel.RecordType.Pain…
146 WebInspector.TimelineUIUtilsImpl._coalescableRecordTypes[WebInspector.TimelineModel.RecordType.Rast…
147 WebInspector.TimelineUIUtilsImpl._coalescableRecordTypes[WebInspector.TimelineModel.RecordType.Deco…
148 WebInspector.TimelineUIUtilsImpl._coalescableRecordTypes[WebInspector.TimelineModel.RecordType.Resi…
[all …]
DTimelineModel.js36 WebInspector.TimelineModel = function(target) class in WebInspector
42 WebInspector.TimelineModel.RecordType = {
106 WebInspector.TimelineModel.Events = {
121 WebInspector.TimelineModel.forAllRecords = function(recordsArray, preOrderCallback, postOrderCallba…
144 WebInspector.TimelineModel.prototype = {
172 … WebInspector.TimelineModel.forAllRecords(this._records, preOrderCallback, postOrderCallback);
229 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordFilterChanged);
275 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordsCleared);
338 WebInspector.TimelineModel.Record = function()
342 WebInspector.TimelineModel.Record.prototype = {
[all …]
DTimelineModelImpl.js12 WebInspector.TimelineModel.call(this, timelineManager.target());
48 var liveEvents = [ WebInspector.TimelineModel.RecordType.BeginFrame,
49 WebInspector.TimelineModel.RecordType.DrawFrame,
50 WebInspector.TimelineModel.RecordType.RequestMainThreadFrame,
51 WebInspector.TimelineModel.RecordType.ActivateLayerTree ];
123 … this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingProgress, event.data);
129 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStarted);
141 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStopped);
155 if (record.type() === WebInspector.TimelineModel.RecordType.Program)
157 if (record.type() === WebInspector.TimelineModel.RecordType.GPUTask)
[all …]
DTimelinePanel.js90 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecording…
91 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStopped, this._onRecording…
92 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsClea…
93 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingProgress, this._onRecordin…
94 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordFilterChanged, this._refreshV…
95 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, t…
1331 WebInspector.TimelineModel.Filter.call(this);
1344 __proto__: WebInspector.TimelineModel.Filter.prototype
1353 WebInspector.TimelineModel.Filter.call(this);
1376 __proto__: WebInspector.TimelineModel.Filter.prototype
[all …]
DTimelineJSProfile.js26 if (record.type() !== WebInspector.TimelineModel.RecordType.FunctionCall &&
27 record.type() !== WebInspector.TimelineModel.RecordType.EvaluateScript)
49 record = new WebInspector.TimelineModel.RecordImpl(timelineModel, event, record);
DTimelineFrameModel.js223 WebInspector.TimelineModel.RecordType.ScheduleStyleRecalculation,
224 WebInspector.TimelineModel.RecordType.InvalidateLayout,
225 WebInspector.TimelineModel.RecordType.BeginFrame,
226 WebInspector.TimelineModel.RecordType.ScrollLayer
263 var recordTypes = WebInspector.TimelineModel.RecordType;
290 var recordTypes = WebInspector.TimelineModel.RecordType;
310 var recordTypes = WebInspector.TimelineModel.RecordType;
DTracingTimelineModel.js12 WebInspector.TimelineModel.call(this, tracingModel.target());
149 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStarted);
174 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStopped);
213 WebInspector.TimelineModel.prototype.reset.call(this);
246 if (record.type() === WebInspector.TimelineModel.RecordType.Program)
248 if (record.type() === WebInspector.TimelineModel.RecordType.GPUTask)
250 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordAdded, record);
466 __proto__: WebInspector.TimelineModel.prototype
DTimelineFlameChart.js137 var cpuThreadRecordPayload = { type: WebInspector.TimelineModel.RecordType.Program };
138 …this._cpuThreadRecord = new WebInspector.TimelineModel.RecordImpl(this._model, /** @type {!Timelin…
155 … var gpuThreadRecordPayload = { type: WebInspector.TimelineModel.RecordType.Program };
156 …this._gpuThreadRecord = new WebInspector.TimelineModel.RecordImpl(this._model, /** @type {!Timelin…
283 if (record.type() === WebInspector.TimelineModel.RecordType.JSFrame)
412 if (record instanceof WebInspector.TimelineModel.RecordImpl) {
822 …this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecording…
829 …this._model.removeEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecord…
DTimelineOverviewPane.js52 model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._reset, this);
134 WebInspector.TimelineModel.forAllRecords([record], addEventDividers);
DMemoryCountersGraph.js87 WebInspector.TimelineModel.forAllRecords([record], null, addStatistics.bind(this));
/external/chromium_org/tools/telemetry/telemetry/timeline/
Dtrace_event_importer_unittest.py50 m = timeline_model.TimelineModel(timeline_data=timeline_data)
102 m = timeline_model.TimelineModel(timeline_data=timeline_data)
119 m = timeline_model.TimelineModel(timeline_data=timeline_data)
145 m = timeline_model.TimelineModel(timeline_data=timeline_data,
186 m = timeline_model.TimelineModel(timeline_data=timeline_data)
215 m = timeline_model.TimelineModel(timeline_data=timeline_data)
239 m = timeline_model.TimelineModel(timeline_data=timeline_data,
266 m = timeline_model.TimelineModel(timeline_data=timeline_data,
311 m = timeline_model.TimelineModel(timeline_data=timeline_data,
335 m = timeline_model.TimelineModel(timeline_data=timeline_data)
[all …]
Dmodel_unittest.py12 model.TimelineModel(
14 model.TimelineModel(
Dinspector_importer_unittest.py129 model.TimelineModel(timeline_data=timeline_data, shift_world_to_zero=False)
135 m = model.TimelineModel(timeline_data=timeline_data,
Dthread_unittest.py11 model = model_module.TimelineModel()
/external/chromium_org/tools/perf/metrics/
Dtimeline_unittest.py23 model = model_module.TimelineModel()
45 model = model_module.TimelineModel()
71 model = model_module.TimelineModel()
99 model = model_module.TimelineModel()
113 model = model_module.TimelineModel()
153 model = model_module.TimelineModel()
Dspeedindex_unittest.py23 _SAMPLE_EVENTS = model.TimelineModel(
206 model.TimelineModel(timeline_data=timeline_data).GetAllEvents())
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
Dmainthread_jank_stats_unittest.py34 model = model_module.TimelineModel()
84 model = model_module.TimelineModel()
Drendering_stats_unittest.py200 timeline = model.TimelineModel()
225 timeline = model.TimelineModel()
264 timeline = model.TimelineModel()
367 timeline = model.TimelineModel()
/external/chromium_org/tools/telemetry/telemetry/web_perf/
Dtimeline_interaction_record_unittest.py73 model = model_module.TimelineModel()
106 model = model_module.TimelineModel()
125 model = model_module.TimelineModel()
/external/chromium_org/tools/perf/measurements/
Dtimeline_controller.py7 from telemetry.timeline.model import TimelineModel
49 self._model = TimelineModel(timeline_data)
Dsmoothness_controller.py7 from telemetry.timeline.model import TimelineModel
48 self._timeline_model = TimelineModel(
Dimage_decoding.py45 timeline_model = model.TimelineModel(timeline_data)
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
Dtracing_backend_unittest.py13 from telemetry.timeline.model import TimelineModel
171 model = TimelineModel(ri)
/external/chromium_org/tools/telemetry/telemetry/core/
Dtab_unittest.py103 timeline_model = model.TimelineModel(trace_data)
131 timeline_model = model.TimelineModel(trace_data)
/external/chromium_org/content/test/gpu/gpu_tests/
Dmemory.py68 timeline_model = model.TimelineModel(timeline_data)

123