Searched refs:IME_VISIBLE (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarFragmentTest.java | 20 import static android.inputmethodservice.InputMethodService.IME_VISIBLE; 227 mCommandQueue.setImeWindowStatus(DEFAULT_DISPLAY, null, IME_VISIBLE, in testSetImeWindowStatusWhenImeSwitchOnDisplay() 239 IME_VISIBLE, BACK_DISPOSITION_DEFAULT, true, false); in testSetImeWindowStatusWhenImeSwitchOnDisplay()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ |
D | SizeCompatModeActivityControllerTest.java | 94 mController.setImeWindowStatus(DISPLAY_ID, null /* token */, InputMethodService.IME_VISIBLE, in testChangeButtonVisibilityOnImeShowHide()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | InputMethodService.java | 360 public static final int IME_VISIBLE = 0x2; field in InputMethodService 1361 setImeWindowStatus(IME_ACTIVE | (showing ? IME_VISIBLE : 0), mBackDisposition); in resetStateForNewConfiguration() 2104 ? (isPreRenderedAndInvisible ? IME_INVISIBLE : IME_VISIBLE) : 0); in showWindow() 3272 ? (mCanPreRender ? (mWindowVisible ? IME_VISIBLE : IME_INVISIBLE) in mapToImeWindowStatus() 3273 : IME_VISIBLE) : 0); in mapToImeWindowStatus()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SizeCompatModeActivityController.java | 94 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()
|
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/navigationbar/ |
D | CarNavigationBar.java | 458 boolean isKeyboardVisible = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()
|
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | InputMethodManagerService.java | 2820 } else if ((visibility & InputMethodService.IME_VISIBLE) == 0) { in shouldShowImeSwitcherLocked() 2903 dismissImeOnBackKeyPressed = ((vis & InputMethodService.IME_VISIBLE) != 0); in setImeWindowStatus() 2907 (vis & InputMethodService.IME_VISIBLE) != 0, dismissImeOnBackKeyPressed); in setImeWindowStatus() 2945 vis &= ~InputMethodService.IME_VISIBLE; in updateSystemUiLocked()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarFragment.java | 721 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()
|