Searched refs:TransactionsEntry (Results 1 – 5 of 5) sorted by relevance
/development/tools/winscope/src/viewers/viewer_transactions/ |
D | presenter.ts | 33 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 …]
|
D | ui_data.ts | 31 public entries: TransactionsEntry[], 46 export class TransactionsEntry implements LogEntry { class
|
D | viewer_transactions_component_test.ts | 56 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/ |
D | transactions_scroll_directive.ts | 20 import {TransactionsEntry} from 'viewers/viewer_transactions/ui_data'; 33 export class TransactionsScrollDirective extends VariableHeightScrollDirective<TransactionsEntry> {
|
D | transactions_scroll_strategy.ts | 18 import {TransactionsEntry} from 'viewers/viewer_transactions/ui_data'; 25 protected override predictScrollItemHeight(entry: TransactionsEntry): number {
|