Home
last modified time | relevance | path

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

/frameworks/base/services/tests/InputMethodSystemServerTests/test-apps/SimpleTestIme/src/com/android/apps/inputmethod/simpleime/
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
/frameworks/base/services/core/java/com/android/server/policy/
DModifierShortcutManager.java143 final boolean isShiftOn = KeyEvent.metaStateHasModifiers(metaState, KeyEvent.META_SHIFT_ON); in getIntent()
144 if (!isShiftOn && !KeyEvent.metaStateHasNoModifiers(metaState)) { in getIntent()
151 SparseArray<Intent> shortcutMap = isShiftOn ? mShiftShortcuts : mIntentShortcuts; in getIntent()
167 String role = isShiftOn ? mShiftRoleShortcuts.get(shortcutChar) in getIntent()