Home
last modified time | relevance | path

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

/development/tools/winscope/src/viewers/viewer_transactions/
Dpresenter.ts42 import {UiData, UiDataEntry, UiDataEntryType} from './ui_data';
54 private allUiDataEntries: UiDataEntry[] = [];
218 (entry: UiDataEntry) => entry.vsyncId.toString(),
222 (entry: UiDataEntry) => entry.pid,
226 (entry: UiDataEntry) => entry.uid,
230 (entry: UiDataEntry) => entry.type,
234 (entry: UiDataEntry) => entry.layerOrDisplayId,
238 (entry: UiDataEntry) => entry.transactionId,
242 (entry: UiDataEntry) => entry.what.split('|').map((flag) => flag.trim()),
364 entries: UiDataEntry[],
[all …]
Dui_data.ts31 public entries: UiDataEntry[],
56 class UiDataEntry { class
82 export {UiData, UiDataEntry, UiDataEntryType};
Dviewer_transactions_component.ts34 import {UiData, UiDataEntry} from './ui_data';
320 onTimestampClicked(entry: UiDataEntry) {
Dviewer_transactions_component_test.ts46 import {UiData, UiDataEntry} from './ui_data';
305 const entry = new UiDataEntry(
318 const entry2 = new UiDataEntry(
408 const entry = new UiDataEntry(
/development/tools/winscope/src/viewers/viewer_transactions/scroll_strategy/
Dtransactions_scroll_directive.ts20 import {UiDataEntry} from 'viewers/viewer_transactions/ui_data';
33 export class TransactionsScrollDirective extends VariableHeightScrollDirective<UiDataEntry> {
Dtransactions_scroll_strategy.ts18 import {UiDataEntry} from 'viewers/viewer_transactions/ui_data';
25 protected override predictScrollItemHeight(entry: UiDataEntry): number {