Home | History | Annotate | Download | only in provider

Lines Matching refs:SHORTCUT

4544          * The size of the core thread pool for shortcut refreshing in GlobalSearch.
4550 * The maximum size of the thread pool for shortcut refreshing in GlobalSearch.
7069 * Optional shortcut character associated with this bookmark.
7072 public static final String SHORTCUT = "shortcut";
7081 private static final String[] sShortcutProjection = { ID, SHORTCUT };
7082 private static final String sShortcutSelection = SHORTCUT + "=?";
7086 * particular shortcut key.
7089 * @param shortcut The shortcut key.
7092 * matching the given shortcut.
7094 public static Intent getIntentForShortcut(ContentResolver cr, char shortcut)
7100 new String[] { String.valueOf((int) shortcut) }, ORDERING);
7101 // Keep trying until we find a valid shortcut
7129 * @param shortcut Shortcut that will invoke the bookmark; 0 if none. If
7131 * with this same shortcut, then that existing shortcut is
7139 char shortcut,
7142 // If a shortcut is supplied, and it is already defined for
7144 if (shortcut != 0) {
7146 new String[] { String.valueOf((int) shortcut) });
7153 if (shortcut != 0) values.put(SHORTCUT, (int) shortcut);