Home
last modified time | relevance | path

Searched refs:RectShowState (Results 1 – 13 of 13) sorted by relevance

/development/tools/winscope/src/viewers/common/
Drect_filter_test.ts19 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 …]
Drect_filter.ts18 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) {
Dui_data_hierarchy.ts21 import {RectShowState} from './rect_show_state';
33 rectIdToShowState?: Map<string, RectShowState> | undefined;
Drects_presenter.ts22 import {RectShowState} from './rect_show_state';
30 private rectIdToShowState: Map<string, RectShowState> | undefined;
81 applyRectShowStateChange(id: string, newShowState: RectShowState) {
Drect_show_state.ts17 export enum RectShowState { enum
Dabstract_hierarchy_viewer_presenter_test.ts28 import {RectShowState} from 'viewers/common/rect_show_state';
427 RectShowState.HIDE,
460 RectShowState.HIDE,
548 expect(showStates.filter((s) => s === RectShowState.SHOW).length).toEqual(
Dabstract_hierarchy_viewer_presenter.ts35 import {RectShowState} from './rect_show_state';
194 async onRectShowStateChange(id: string, newShowState: RectShowState) {
/development/tools/winscope/src/viewers/components/
Dtree_component_test.ts26 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;
Dtree_component.ts28 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;
Dhierarchy_component.ts27 import {RectShowState} from 'viewers/common/rect_show_state';
159 @Input() rectIdToShowState?: Map<string, RectShowState>;
/development/tools/winscope/src/viewers/viewer_window_manager/
Dui_data.ts18 import {RectShowState} from 'viewers/common/rect_show_state';
28 rectIdToShowState: Map<string, RectShowState> | undefined;
/development/tools/winscope/src/viewers/viewer_surface_flinger/
Dui_data.ts20 import {RectShowState} from 'viewers/common/rect_show_state';
30 rectIdToShowState: Map<string, RectShowState> | undefined;
/development/tools/winscope/src/viewers/viewer_view_capture/
Dui_data.ts20 import {RectShowState} from 'viewers/common/rect_show_state';
30 rectIdToShowState: Map<string, RectShowState> | undefined;