Home
last modified time | relevance | path

Searched refs:IME_VISIBLE (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNavigationBarFragmentTest.java20 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/
DSizeCompatModeActivityControllerTest.java94 mController.setImeWindowStatus(DISPLAY_ID, null /* token */, InputMethodService.IME_VISIBLE, in testChangeButtonVisibilityOnImeShowHide()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java360 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/
DSizeCompatModeActivityController.java94 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/navigationbar/
DCarNavigationBar.java458 boolean isKeyboardVisible = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java2820 } 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/
DNavigationBarFragment.java721 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0; in setImeWindowStatus()