Searched refs:LauncherAction (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/ |
D | BaseAccessibilityDelegate.java | 58 protected final SparseArray<LauncherAction> mActions = new SparseArray<>(); 73 List<LauncherAction> actions = new ArrayList<>(); in onInitializeAccessibilityNodeInfo() 87 protected abstract void getSupportedActions(View host, ItemInfo item, List<LauncherAction> out); in getSupportedActions() 175 public class LauncherAction { class in BaseAccessibilityDelegate 181 public LauncherAction(int id, int labelRes, int keyCode) { in LauncherAction() method in BaseAccessibilityDelegate.LauncherAction
|
D | LauncherAccessibilityDelegate.java | 87 mActions.put(REMOVE, new LauncherAction( in LauncherAccessibilityDelegate() 89 mActions.put(UNINSTALL, new LauncherAction( in LauncherAccessibilityDelegate() 91 mActions.put(DISMISS_PREDICTION, new LauncherAction(DISMISS_PREDICTION, in LauncherAccessibilityDelegate() 93 mActions.put(RECONFIGURE, new LauncherAction( in LauncherAccessibilityDelegate() 95 mActions.put(ADD_TO_WORKSPACE, new LauncherAction( in LauncherAccessibilityDelegate() 97 mActions.put(MOVE, new LauncherAction( in LauncherAccessibilityDelegate() 99 mActions.put(MOVE_TO_WORKSPACE, new LauncherAction(MOVE_TO_WORKSPACE, in LauncherAccessibilityDelegate() 101 mActions.put(RESIZE, new LauncherAction( in LauncherAccessibilityDelegate() 103 mActions.put(DEEP_SHORTCUTS, new LauncherAction(DEEP_SHORTCUTS, in LauncherAccessibilityDelegate() 108 protected void getSupportedActions(View host, ItemInfo item, List<LauncherAction> out) { in getSupportedActions() [all …]
|
D | ShortcutMenuAccessibilityDelegate.java | 46 protected void getSupportedActions(View host, ItemInfo item, List<LauncherAction> out) { in getSupportedActions()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/ |
D | QuickstepAccessibilityDelegate.java | 32 mActions.put(PIN_PREDICTION, new LauncherAction( in QuickstepAccessibilityDelegate() 37 protected void getSupportedActions(View host, ItemInfo item, List<LauncherAction> out) { in getSupportedActions() 39 out.add(new LauncherAction(PIN_PREDICTION, R.string.pin_prediction, in getSupportedActions()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
D | TaskbarShortcutMenuAccessibilityDelegate.java | 62 mActions.put(DEEP_SHORTCUTS, new LauncherAction(DEEP_SHORTCUTS, in TaskbarShortcutMenuAccessibilityDelegate() 64 mActions.put(MOVE_TO_TOP_OR_LEFT, new LauncherAction( in TaskbarShortcutMenuAccessibilityDelegate() 66 mActions.put(MOVE_TO_BOTTOM_OR_RIGHT, new LauncherAction( in TaskbarShortcutMenuAccessibilityDelegate() 73 protected void getSupportedActions(View host, ItemInfo item, List<LauncherAction> out) { in getSupportedActions()
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | KeyboardShortcutsDelegate.java | 97 for (BaseAccessibilityDelegate.LauncherAction la : getSupportedActions( in onKeyShortcut()
|