Home
last modified time | relevance | path

Searched refs:firstEntry (Results 1 – 6 of 6) sorted by relevance

/development/tools/winscope/src/app/
Dtimeline_data.ts30 private firstEntry?: TraceEntry<object>;
72 this.firstEntry = this.findFirstEntry();
104 if (this.firstEntry) {
105 currentPosition = TracePosition.fromTraceEntry(this.firstEntry);
162 if (!this.firstEntry || !this.lastEntry) {
167 this.firstEntry.getTimestamp(),
237 return this.firstEntry !== undefined;
243 this.firstEntry?.getTimestamp().getValueNs() !==
312 this.firstEntry = undefined;
/development/tools/winscope/src/viewers/viewer_surface_flinger/
Dpresenter_test.ts80 const firstEntry = this.traceSf.getEntry(0); constant
81 this.positionUpdate = TracePositionUpdate.fromTraceEntry(firstEntry);
89 const firstEntryDataTree = await firstEntry.getValue();
306 const firstEntry = traceSf.getEntry(0); constant
307 const positionUpdate = TracePositionUpdate.fromTraceEntry(firstEntry);
/development/tools/winscope/src/viewers/viewer_window_manager/
Dpresenter_test.ts76 const firstEntry = this.trace.getEntry(0); constant
77 this.positionUpdate = TracePositionUpdate.fromTraceEntry(firstEntry);
82 const firstEntryDataTree = await firstEntry.getValue();
/development/tools/winscope/src/viewers/viewer_view_capture/
Dpresenter_test.ts78 const firstEntry = traceTaskbar.getEntry(0); constant
79 this.positionUpdate = TracePositionUpdate.fromTraceEntry(firstEntry);
89 const firstEntryDataTree = await firstEntry.getValue();
/development/tools/winscope/src/trace/
Dframe_mapper.ts241 const firstEntry = windowManager.getEntry(0); constant
242 const startSearchTime = firstEntry
245 const endSearchTime = firstEntry.getTimestamp().add(1n);
250 firstEntry.getFramesRange(),
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/
DCamera2RawFragment.java1287 pendingQueue.firstEntry(); in dequeueAndSaveImage()