Home
last modified time | relevance | path

Searched refs:isShiftOn (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/tests/InputMethodSystemServerTests/test-apps/SimpleTestIme/src/com/android/apps/inputmethod/simpleime/
H A DSimpleKeyboard.java112 boolean isShiftOn = isShiftOn(mKeyboardState); in handleShift()
115 softKeyView.setAllCaps(isShiftOn); in handleShift()
119 private static boolean isShiftOn(int state) { in isShiftOn() method in SimpleKeyboard
/aosp14/frameworks/base/services/core/java/com/android/server/policy/
H A DModifierShortcutManager.java124 final boolean isShiftOn = KeyEvent.metaStateHasModifiers(metaState, KeyEvent.META_SHIFT_ON); in getIntent()
125 if (!isShiftOn && !KeyEvent.metaStateHasNoModifiers(metaState)) { in getIntent()
132 SparseArray<ShortcutInfo> shortcutMap = isShiftOn ? mShiftShortcuts : mIntentShortcuts; in getIntent()