HomeSort by relevance Sort by last modified time
    Searched refs:SHORTCUT (Results 1 - 8 of 8) sorted by null

  /frameworks/policies/base/mid/com/android/internal/policy/impl/
ShortcutManager.java 34 * <li> Returning a shortcut-matching intent to clients
43 Settings.Bookmarks.SHORTCUT, Settings.Bookmarks.INTENT
48 /** Map of a shortcut to its intent. */
58 /** Observes the provider of shortcut+intents */
80 int shortcut = c.getInt(COLUMN_SHORTCUT); local
81 if (shortcut == 0) continue;
87 Log.w(TAG, "Intent URI for shortcut invalid.", e);
90 mShortcutIntents.put(shortcut, intent);
95 * Gets the shortcut intent for a given keycode+modifier. Make sure you
97 * if 'Sym+A' should invoke a shortcut on 'A', you should strip th
111 int shortcut = kcm.get(keyCode, modifiers); local
    [all...]
  /frameworks/policies/base/phone/com/android/internal/policy/impl/
ShortcutManager.java 34 * <li> Returning a shortcut-matching intent to clients
43 Settings.Bookmarks.SHORTCUT, Settings.Bookmarks.INTENT
48 /** Map of a shortcut to its intent. */
58 /** Observes the provider of shortcut+intents */
80 int shortcut = c.getInt(COLUMN_SHORTCUT); local
81 if (shortcut == 0) continue;
87 Log.w(TAG, "Intent URI for shortcut invalid.", e);
90 mShortcutIntents.put(shortcut, intent);
95 * Gets the shortcut intent for a given keycode+modifier. Make sure you
97 * if 'Sym+A' should invoke a shortcut on 'A', you should strip th
111 int shortcut = kcm.get(keyCode, modifiers); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
QuickLaunchSettings.java 50 * and allows choosing a new bookmark for a shortcut.
67 Bookmarks.SHORTCUT, Bookmarks.TITLE, Bookmarks.INTENT
69 private static final String sShortcutSelection = Bookmarks.SHORTCUT + "=?";
81 /** Preference category to hold the shortcut preferences. */
83 /** Mapping of a shortcut to its preference. */
86 /** The bookmark title of the shortcut that is being cleared. */
89 /** The shortcut that is being cleared. */
144 // Create the dialog for clearing a shortcut
182 // Clear the shortcut
189 private void clearShortcut(char shortcut) {
230 char shortcut = data.getCharExtra(BookmarkPicker.EXTRA_SHORTCUT, (char) 0); local
242 Bookmarks.add(getContentResolver(), intent, "", DEFAULT_BOOKMARK_FOLDER, shortcut, 0); local
271 char shortcut = (char) Character.toLowerCase(keyMap.getDisplayLabel(keyCode)); local
302 char shortcut = Character.toLowerCase((char) c.getInt(COLUMN_SHORTCUT)); local
343 char shortcut = (char) noLongerBookmarkedShortcuts.keyAt(i); local
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /packages/apps/IM/src/com/android/im/provider/
ImpsProvider.java 211 Imps.Chats._ID, Imps.Chats.SHORTCUT, Imps.Chats.LAST_MESSAGE_DATE
215 Imps.Chats._ID, Imps.Chats.SHORTCUT
618 buf.append("shortcut INTEGER);"); // which of 10 slots (if any) this chat occupies
    [all...]
Imps.java     [all...]
  /packages/apps/IM/src/com/android/im/app/
ChatSwitcher.java 402 // If there is a shortcut assigned to this chat, then show it, otherwise
403 // hide the shortcut text view.
404 long shortcut = c.getLong(mShortcutColumn); local
405 TextView shortcutView = (TextView) view.findViewById(R.id.shortcut);
408 if (shortcut >= 0 && shortcut < 10) {
409 shortcutView.setText(mMenuPlus + shortcut);
463 mShortcutColumn = cursor.getColumnIndexOrThrow(Imps.Chats.SHORTCUT);
641 long shortcut = c.getLong(mShortcutColumn); local
642 if (shortcut >= 0 && shortcut < 10 && key == (shortcut + '0'))
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 108 "shortcut INTEGER," +
113 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);");
837 String shortcutStr = parser.getAttributeValue(null, "shortcut");
    [all...]

Completed in 405 milliseconds