Searched refs:RectShowState (Results 1 – 13 of 13) sorted by relevance
/development/tools/winscope/src/viewers/common/ |
D | rect_filter_test.ts | 19 import {RectShowState} from './rect_show_state'; 28 let expectedRectIdToShowState: Map<string, RectShowState>; 33 [visibleRect.id, RectShowState.SHOW], 34 [nonVisibleRect.id, RectShowState.SHOW], 35 [displayRect.id, RectShowState.SHOW], 45 expectedRectIdToShowState.set(displayRect.id, RectShowState.HIDE); 51 rectFilter.updateRectShowState(displayRect.id, RectShowState.SHOW); 52 expectedRectIdToShowState.set(displayRect.id, RectShowState.SHOW); 62 rectFilter.updateRectShowState(visibleRect.id, RectShowState.SHOW); 65 rectFilter.updateRectShowState(visibleRect.id, RectShowState.HIDE); [all …]
|
D | rect_filter.ts | 18 import {RectShowState} from './rect_show_state'; 21 private forcedStates = new Map<string, RectShowState>(); 33 const forceHidden = this.forcedStates.get(rect.id) === RectShowState.HIDE; 34 const forceShow = this.forcedStates.get(rect.id) === RectShowState.SHOW; 49 ): Map<string, RectShowState> { 50 const rectIdToShowState = new Map<string, RectShowState>(); 58 const showState = isShown ? RectShowState.SHOW : RectShowState.HIDE; constant 64 updateRectShowState(id: string, newShowState: RectShowState) {
|
D | ui_data_hierarchy.ts | 21 import {RectShowState} from './rect_show_state'; 33 rectIdToShowState?: Map<string, RectShowState> | undefined;
|
D | rects_presenter.ts | 22 import {RectShowState} from './rect_show_state'; 30 private rectIdToShowState: Map<string, RectShowState> | undefined; 81 applyRectShowStateChange(id: string, newShowState: RectShowState) {
|
D | rect_show_state.ts | 17 export enum RectShowState { enum
|
D | abstract_hierarchy_viewer_presenter_test.ts | 28 import {RectShowState} from 'viewers/common/rect_show_state'; 427 RectShowState.HIDE, 460 RectShowState.HIDE, 548 expect(showStates.filter((s) => s === RectShowState.SHOW).length).toEqual(
|
D | abstract_hierarchy_viewer_presenter.ts | 35 import {RectShowState} from './rect_show_state'; 194 async onRectShowStateChange(id: string, newShowState: RectShowState) {
|
/development/tools/winscope/src/viewers/components/ |
D | tree_component_test.ts | 26 import {RectShowState} from 'viewers/common/rect_show_state'; 161 [component.tree.id, RectShowState.HIDE], 169 component.rectIdToShowState.set(component.tree.id, RectShowState.SHOW); 179 [component.tree.id, RectShowState.HIDE], 188 let state: RectShowState | undefined; 196 expect(state).toEqual(RectShowState.SHOW); 241 rectIdToShowState: Map<string, RectShowState> | undefined;
|
D | tree_component.ts | 28 import {RectShowState} from 'viewers/common/rect_show_state'; 106 @Input() rectIdToShowState?: Map<string, RectShowState>; 274 return showState === RectShowState.SHOW ? 'visibility' : 'visibility_off'; 281 currentShowState === RectShowState.HIDE 282 ? RectShowState.SHOW 283 : RectShowState.HIDE;
|
D | hierarchy_component.ts | 27 import {RectShowState} from 'viewers/common/rect_show_state'; 159 @Input() rectIdToShowState?: Map<string, RectShowState>;
|
/development/tools/winscope/src/viewers/viewer_window_manager/ |
D | ui_data.ts | 18 import {RectShowState} from 'viewers/common/rect_show_state'; 28 rectIdToShowState: Map<string, RectShowState> | undefined;
|
/development/tools/winscope/src/viewers/viewer_surface_flinger/ |
D | ui_data.ts | 20 import {RectShowState} from 'viewers/common/rect_show_state'; 30 rectIdToShowState: Map<string, RectShowState> | undefined;
|
/development/tools/winscope/src/viewers/viewer_view_capture/ |
D | ui_data.ts | 20 import {RectShowState} from 'viewers/common/rect_show_state'; 30 rectIdToShowState: Map<string, RectShowState> | undefined;
|