Searched defs:shortcut (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
H A DShortcutKeyDispatcher.java17 package com.android.systemui.shortcut;
50 * Dispatches shortcut to System UI components
70 * Registers a shortcut key to window manager.
71 * @param shortcutCode packed representation of shortcut key code and meta information
H A DShortcutKeyServiceProxy.java17 package com.android.systemui.shortcut;
26 * post them onto shortcut handlers.
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java97 * An optional shortcut for this word. When the shortcut is typed, supporting IMEs should
100 public static final String SHORTCUT = "shortcut";
156 * @param shortcut optional shortcut spelling for this word. When the shortcut
162 int frequency, String shortcut, Locale locale) {
179 values.put(SHORTCUT, shortcut);
161 addWord(Context context, String word, int frequency, String shortcut, Locale locale) argument
H A DSettings.java5783 * The size of the core thread pool for shortcut refreshing in GlobalSearch.
5789 * The maximum size of the thread pool for shortcut refreshing in GlobalSearch.
9058 * Optional shortcut character associated with this bookmark.
9061 public static final String SHORTCUT = "shortcut";
9075 * particular shortcut key.
9078 * @param shortcut The shortcut key.
9081 * matching the given shortcut.
9083 public static Intent getIntentForShortcut(ContentResolver cr, char shortcut) argument
9089 new String[] { String.valueOf((int) shortcut) }, ORDERIN
9124 add(ContentResolver cr, Intent intent, String title, String folder, char shortcut, int ordering) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java142 * shortcut+title being shown. Instead, re-set the shortcut caption
152 void setCaptionMode(boolean shortcut) { argument
161 mShortcutCaptionMode = shortcut && (mItemData.shouldShowShortcut());
H A DIconMenuView.java98 * Longpress on MENU (while this is shown) switches to shortcut caption
106 * mode between each's title and its shortcut. This is the last caption mode
585 * Sets the shortcut caption mode for IconMenuView. This mode will
586 * continuously cycle between a child's shortcut and its title.
588 * @param cycleShortcutAndNormal Whether to go into cycling shortcut mode,
596 * to shortcut
635 * Iterates children and sets the desired shortcut mode. Only
639 * @param shortcut Whether to show shortcut or the title.
641 private void setChildrenCaptionMode(boolean shortcut) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DLauncherApps.java162 * <p>Only the applications that are allowed to access the shortcut information,
421 * Returns whether the caller can access the shortcut information.
423 * <p>Only the default launcher can access the shortcut information.
428 * this permission, it does <b>not</b> have to purge pinned shortcut information.
443 * <p>Callers must be allowed to access the shortcut information, as defined in {@link
485 * <p>Callers must be allowed to access the shortcut information, as defined in {@link
489 * @param shortcutIds The IDs of the shortcut to be pinned.
506 public int getShortcutIconResId(@NonNull ShortcutInfo shortcut) { argument
507 return shortcut.getIconResourceId();
528 * <p>Callers must be allowed to access the shortcut informatio
535 getShortcutIconFd( @onNull ShortcutInfo shortcut) argument
606 startShortcut(@onNull ShortcutInfo shortcut, @Nullable Rect sourceBounds, @Nullable Bundle startActivityOptions) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java509 Slog.e(TAG, "Bad shortcut manager settings", e);
993 void removeIcon(@UserIdInt int userId, ShortcutInfo shortcut) { argument
994 if (shortcut.getBitmapPath() != null) {
996 Slog.d(TAG, "Removing " + shortcut.getBitmapPath());
998 new File(shortcut.getBitmapPath()).delete();
1000 shortcut.setBitmapPath(null);
1001 shortcut.setIconResourceId(0);
1002 shortcut.clearFlags(ShortcutInfo.FLAG_HAS_ICON_FILE | ShortcutInfo.FLAG_HAS_ICON_RES);
1031 * Build the cached bitmap filename for a shortcut icon.
1036 FileOutputStreamWithPath openIconFileForWrite(@UserIdInt int userId, ShortcutInfo shortcut) argument
1061 saveIconAndFixUpShortcut(@serIdInt int userId, ShortcutInfo shortcut) argument
1144 injectValidateIconResPackage(ShortcutInfo shortcut, Icon icon) argument
1295 fixUpIncomingShortcutInfo(@onNull ShortcutInfo shortcut, boolean forUpdate) argument
[all...]

Completed in 3669 milliseconds