Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/wm/
H A DBarControlPolicy.java119 int showTypes = 0; in getBarVisibilities() local
123 showTypes |= WindowInsets.Type.statusBars(); in getBarVisibilities()
128 showTypes |= WindowInsets.Type.navigationBars(); in getBarVisibilities()
131 return new int[] {showTypes, hideTypes}; in getBarVisibilities()
/aosp12/frameworks/base/core/java/android/view/
H A DImeInsetsSourceConsumer.java124 public void setControl(@Nullable InsetsSourceControl control, int[] showTypes, in setControl() argument
126 super.setControl(control, showTypes, hideTypes); in setControl()
H A DInsetsSourceConsumer.java119 @InsetsType int[] showTypes, @InsetsType int[] hideTypes) { in setControl() argument
164 showTypes[0] |= toPublicType(getType()); in setControl()
H A DInsetsController.java845 final int[] showTypes = new int[1]; in onControlsChanged() local
855 consumer.setControl(control, showTypes, hideTypes); in onControlsChanged()
863 consumer.setControl(control, showTypes, hideTypes); in onControlsChanged()
893 showTypes[0] &= ~animatingTypes; in onControlsChanged()
896 if (showTypes[0] != 0) { in onControlsChanged()
897 applyAnimation(showTypes[0], true /* show */, false /* fromIme */); in onControlsChanged()
H A DViewRootImpl.java2278 private void clearLowProfileModeIfNeeded(@InsetsType int showTypes, boolean fromIme) { in clearLowProfileModeIfNeeded() argument
2280 if ((showTypes & Type.systemBars()) != 0 && !fromIme in clearLowProfileModeIfNeeded()