Home
last modified time | relevance | path

Searched refs:UiData (Results 1 – 25 of 32) sorted by relevance

12

/development/tools/winscope/src/viewers/viewer_transitions/
Dpresenter_test.ts27 import {UiData} from './ui_data';
35 let outputUiData: UiData | undefined;
36 const presenter = new Presenter(trace, traces, (data: UiData) => {
45 expect(outputUiData).toEqual(UiData.EMPTY);
62 let outputUiData = UiData.EMPTY;
63 const presenter = new Presenter(trace, traces, (data: UiData) => {
Dpresenter.ts42 import {UiData} from './ui_data';
51 private uiData = UiData.EMPTY;
52 private readonly notifyUiDataCallback: (data: UiData) => void;
58 notifyUiDataCallback: (data: UiData) => void,
76 if (this.uiData === UiData.EMPTY) {
139 private async computeUiData(): Promise<UiData> {
150 return new UiData(transitions, selectedTransition);
Dviewer_transitions_component.ts27 import {UiData} from './ui_data';
232 set inputData(data: UiData) {
280 uiData: UiData = UiData.EMPTY;
Dui_data.ts20 export class UiData { class
26 static EMPTY = new UiData([], undefined);
Dviewer_transitions.ts25 import {UiData} from './ui_data';
39 this.presenter = new Presenter(trace, traces, (data: UiData) => {
/development/tools/winscope/src/viewers/viewer_transactions/
Dui_data.ts22 class UiData { class
39 static EMPTY = new UiData(
82 export {UiData, UiDataEntry, UiDataEntryType};
Dviewer_transactions_component.ts34 import {UiData, UiDataEntry} from './ui_data';
252 uiData: UiData = UiData.EMPTY;
270 set inputData(data: UiData) {
Dpresenter_test.ts28 import {UiData, UiDataEntryType} from './ui_data';
34 let outputUiData: undefined | UiData;
51 presenter = new Presenter(trace, new InMemoryStorage(), (data: UiData) => {
55 expect(outputUiData).toEqual(UiData.EMPTY);
57 const expectedUiData = UiData.EMPTY;
74 expect(outputUiData).toEqual(UiData.EMPTY);
347 presenter = new Presenter(trace, new InMemoryStorage(), (data: UiData) => {
Dviewer_transactions_component_test.ts46 import {UiData, UiDataEntry} from './ui_data';
291 function makeUiData(selectedEntryIndex: number): UiData {
331 return new UiData(
376 function makeUiDataForScroll(): UiData {
390 const uiData = new UiData(
Dviewer_transactions.ts27 import {UiData} from './ui_data';
45 this.presenter = new Presenter(trace, storage, (data: UiData) => {
/development/tools/winscope/src/viewers/viewer_protolog/
Dviewer_protolog_component.ts24 import {UiData, UiDataMessage} from './ui_data';
191 uiData: UiData = UiData.EMPTY;
203 set inputData(data: UiData) {
Dui_data.ts29 export class UiData { class
39 static EMPTY = new UiData([], [], [], [], undefined, undefined);
Dpresenter.ts32 import {UiData, UiDataMessage} from './ui_data';
36 private readonly notifyUiDataCallback: (data: UiData) => void;
39 private uiData = UiData.EMPTY;
55 notifyUiDataCallback: (data: UiData) => void,
206 this.uiData = new UiData(
Dviewer_protolog.ts27 import {UiData} from './ui_data';
41 this.presenter = new Presenter(trace, (data: UiData) => {
Dpresenter_test.ts31 import {UiData, UiDataMessage} from './ui_data';
40 let outputUiData: undefined | UiData;
162 presenter = new Presenter(trace, (data: UiData) => {
173 presenter = new Presenter(trace, (data: UiData) => {
/development/tools/winscope/src/viewers/viewer_window_manager/
Dviewer_window_manager_component.ts23 import {UiData} from './ui_data';
73 @Input() inputData: UiData | undefined;
Dviewer_window_manager.ts25 import {UiData} from './ui_data';
43 const notifyViewCallback = (uiData: UiData) => {
Dpresenter.ts37 import {UiData} from './ui_data';
137 super(trace, traces, storage, notifyViewCallback, new UiData());
194 this.refreshHierarchyViewerUiData(new UiData());
Dui_data.ts25 export class UiData implements UiDataHierarchy { class
/development/tools/winscope/src/viewers/viewer_view_capture/
Dviewer_view_capture_component.ts24 import {UiData} from './ui_data';
80 @Input() inputData: UiData | undefined;
Dviewer_view_capture.ts29 import {UiData} from './ui_data';
43 const notifyViewCallback = (uiData: UiData) => {
Dpresenter_test.ts36 import {UiData} from 'viewers/viewer_view_capture/ui_data';
159 assertDefined((uiData as UiData).curatedProperties).translationY,
197 (uiData as UiData).curatedProperties,
/development/tools/winscope/src/viewers/viewer_surface_flinger/
Dpresenter_test.ts35 import {UiData} from './ui_data';
170 expect(assertDefined((uiData as UiData).curatedProperties).flags).toEqual(
213 (uiData as UiData).curatedProperties,
248 let uiData: UiData;
255 const notifyViewCallback = (newData: UiData) => {
296 const notifyViewCallback = (newData: UiData) => {
Dviewer_surface_flinger_component.ts24 import {UiData} from './ui_data';
99 @Input() inputData: UiData | undefined;
Dviewer_surface_flinger.ts27 import {UiData} from './ui_data';
45 const notifyViewCallback = (uiData: UiData) => {

12