Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/policy/
DShortcutManager.java88 int shortcutChar = kcm.get(keyCode, metaState); in getIntent() local
89 if (shortcutChar != 0) { in getIntent()
90 shortcut = shortcutMap.get(shortcutChar); in getIntent()
95 shortcutChar = Character.toLowerCase(kcm.getDisplayLabel(keyCode)); in getIntent()
96 if (shortcutChar != 0) { in getIntent()
97 shortcut = shortcutMap.get(shortcutChar); in getIntent()
133 final int shortcutChar = shortcutName.charAt(0); in loadShortcuts() local
177 mShiftShortcuts.put(shortcutChar, shortcut); in loadShortcuts()
179 mShortcuts.put(shortcutChar, shortcut); in loadShortcuts()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuBuilder.java850 final char shortcutChar = in findItemsWithShortcutForKey() local
856 if (isModifiersExactMatch && (shortcutChar != 0) && in findItemsWithShortcutForKey()
857 (shortcutChar == possibleChars.meta[0] in findItemsWithShortcutForKey()
858 || shortcutChar == possibleChars.meta[2] in findItemsWithShortcutForKey()
859 || (qwerty && shortcutChar == '\b' && in findItemsWithShortcutForKey()
904 final char shortcutChar = qwerty ? item.getAlphabeticShortcut() : in findItemWithShortcutForKey() local
906 if ((shortcutChar == possibleChars.meta[0] && in findItemWithShortcutForKey()
908 || (shortcutChar == possibleChars.meta[2] && in findItemWithShortcutForKey()
910 || (qwerty && shortcutChar == '\b' && in findItemWithShortcutForKey()