Searched refs:hideTypes (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | InsetsSourceConsumerTest.java | 181 int[] hideTypes = new int[1]; in testRestore() 184 new int[1], hideTypes); in testRestore() 185 assertEquals(statusBars(), hideTypes[0]); in testRestore() 199 int[] hideTypes = new int[1]; in testRestore_noAnimation() 202 new int[1], hideTypes); in testRestore_noAnimation() 204 assertEquals(0, hideTypes[0]); in testRestore_noAnimation()
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/wm/ |
H A D | BarControlPolicy.java | 118 int hideTypes = 0; in getBarVisibilities() local 121 hideTypes |= WindowInsets.Type.statusBars(); in getBarVisibilities() 126 hideTypes |= WindowInsets.Type.navigationBars(); in getBarVisibilities() 131 return new int[] {showTypes, hideTypes}; in getBarVisibilities()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | ImeInsetsSourceConsumer.java | 125 int[] hideTypes) { in setControl() argument 126 super.setControl(control, showTypes, hideTypes); in setControl()
|
H A D | InsetsSourceConsumer.java | 119 @InsetsType int[] showTypes, @InsetsType int[] hideTypes) { in setControl() argument 166 hideTypes[0] |= toPublicType(getType()); in setControl()
|
H A D | InsetsController.java | 846 final int[] hideTypes = new int[1]; in onControlsChanged() local 855 consumer.setControl(control, showTypes, hideTypes); in onControlsChanged() 863 consumer.setControl(control, showTypes, hideTypes); in onControlsChanged() 894 hideTypes[0] &= ~animatingTypes; in onControlsChanged() 899 if (hideTypes[0] != 0) { in onControlsChanged() 900 applyAnimation(hideTypes[0], false /* show */, false /* fromIme */); in onControlsChanged()
|