HomeSort by relevance Sort by last modified time
    Searched full:shortcutchar (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/core/java/com/android/server/policy/
ShortcutManager.java 88 int shortcutChar = kcm.get(keyCode, metaState);
89 if (shortcutChar != 0) {
90 shortcut = shortcutMap.get(shortcutChar);
95 shortcutChar = Character.toLowerCase(kcm.getDisplayLabel(keyCode));
96 if (shortcutChar != 0) {
97 shortcut = shortcutMap.get(shortcutChar);
133 final int shortcutChar = shortcutName.charAt(0);
177 mShiftShortcuts.put(shortcutChar, shortcut);
179 mShortcuts.put(shortcutChar, shortcut);
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuBuilder.java 824 final char shortcutChar = qwerty ? item.getAlphabeticShortcut() : item.getNumericShortcut();
826 (shortcutChar != 0) &&
827 (shortcutChar == possibleChars.meta[0]
828 || shortcutChar == possibleChars.meta[2]
829 || (qwerty && shortcutChar == '\b' &&
874 final char shortcutChar = qwerty ? item.getAlphabeticShortcut() :
876 if ((shortcutChar == possibleChars.meta[0] &&
878 || (shortcutChar == possibleChars.meta[2] &&
880 || (qwerty && shortcutChar == '\b' &&
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
MenuBuilder.java 875 final char shortcutChar = qwerty ? item.getAlphabeticShortcut() : item.getNumericShortcut();
877 (shortcutChar != 0) &&
878 (shortcutChar == possibleChars.meta[0]
879 || shortcutChar == possibleChars.meta[2]
880 || (qwerty && shortcutChar == '\b' &&
926 final char shortcutChar = qwerty ? item.getAlphabeticShortcut() :
928 if ((shortcutChar == possibleChars.meta[0] &&
930 || (shortcutChar == possibleChars.meta[2] &&
932 || (qwerty && shortcutChar == '\b' &&
    [all...]

Completed in 1332 milliseconds