Home
last modified time | relevance | path

Searched refs:TransactionsEntry (Results 1 – 5 of 5) sorted by relevance

/development/tools/winscope/src/viewers/viewer_transactions/
Dpresenter.ts33 import {TransactionsEntry, TransactionsEntryType, UiData} from './ui_data';
53 protected override logPresenter = new LogPresenter<TransactionsEntry>();
135 protected override async makeUiDataEntries(): Promise<TransactionsEntry[]> {
136 const entries: TransactionsEntry[] = [];
194 entries.push(new TransactionsEntry(entry, fields, layerState));
223 entries.push(new TransactionsEntry(entry, fields, displayState));
239 entries.push(new TransactionsEntry(entry, fields, undefined));
263 entries.push(new TransactionsEntry(entry, fields, layerCreationArgs));
284 entries.push(new TransactionsEntry(entry, fields, destroyedLayerId));
312 entries.push(new TransactionsEntry(entry, fields, displayState));
[all …]
Dui_data.ts31 public entries: TransactionsEntry[],
46 export class TransactionsEntry implements LogEntry { class
Dviewer_transactions_component_test.ts56 import {TransactionsEntry, UiData} from './ui_data';
146 const entry1 = new TransactionsEntry(
200 const entry = new TransactionsEntry(
/development/tools/winscope/src/viewers/viewer_transactions/scroll_strategy/
Dtransactions_scroll_directive.ts20 import {TransactionsEntry} from 'viewers/viewer_transactions/ui_data';
33 export class TransactionsScrollDirective extends VariableHeightScrollDirective<TransactionsEntry> {
Dtransactions_scroll_strategy.ts18 import {TransactionsEntry} from 'viewers/viewer_transactions/ui_data';
25 protected override predictScrollItemHeight(entry: TransactionsEntry): number {