Home
last modified time | relevance | path

Searched refs:systemShortcuts (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java204 List<SystemShortcut> systemShortcuts = launcher.getSupportedShortcuts() in showForIcon() local
211 container.populateAndShowRows(icon, deepShortcutCount, systemShortcuts); in showForIcon()
237 int deepShortcutCount, List<SystemShortcut> systemShortcuts) { in populateAndShowRows() argument
243 addAllShortcuts(deepShortcutCount, systemShortcuts); in populateAndShowRows()
244 } else if (!systemShortcuts.isEmpty()) { in populateAndShowRows()
245 addSystemShortcuts(systemShortcuts, in populateAndShowRows()
274 List<SystemShortcut> systemShortcuts) { in addAllShortcuts() argument
275 if (deepShortcutCount + systemShortcuts.size() <= SHORTCUT_COLLAPSE_THRESHOLD) { in addAllShortcuts()
277 addSystemShortcuts(systemShortcuts, in addAllShortcuts()
280 float currentHeight = (mShortcutHeight * systemShortcuts.size()) in addAllShortcuts()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/secondarydisplay/
DSecondaryDragLayer.java196 List<SystemShortcut> systemShortcuts = new ArrayList<>(); in onIconLongClicked() local
197 systemShortcuts.add(APP_INFO.getShortcut(mActivity, item, v)); in onIconLongClicked()
200 systemShortcuts.add(mPinnedAppsAdapter.getSystemShortcut(item, v)); in onIconLongClicked()
207 systemShortcuts); in onIconLongClicked() local
/packages/apps/Launcher3/src/com/android/launcher3/model/
DBgDataModel.java347 Set<String> systemShortcuts = systemMap.remove(entry.getKey()); in updateShortcutPinnedState() local
348 if (systemShortcuts == null) { in updateShortcutPinnedState()
349 systemShortcuts = Collections.emptySet(); in updateShortcutPinnedState()
353 if (systemShortcuts.size() != modelShortcuts.size() in updateShortcutPinnedState()
354 || !systemShortcuts.containsAll(modelShortcuts)) { in updateShortcutPinnedState()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarPopupController.java159 List<SystemShortcut> systemShortcuts = getSystemShortcuts() in showForIcon() local
166 container.populateAndShowRows(icon, deepShortcutCount, systemShortcuts); in showForIcon()