Home
last modified time | relevance | path

Searched refs:getShortcutIcon (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/model/
DShortcutsChangedTaskTest.kt96 whenever(mockIconCache.getShortcutIcon(eq(expectedWai), any<CacheableShortcutInfo>())) in <lambda>()
132 verify(mockIconCache).getShortcutIcon(eq(expectedWai), any<CacheableShortcutInfo>()) in <lambda>()
195 verify(mockIconCache).getShortcutIcon(eq(expectedWai), any<CacheableShortcutInfo>()) in <lambda>()
254 verify(mockIconCache).getShortcutIcon(eq(expectedWai), any<CacheableShortcutInfo>()) in <lambda>()
284 verify(mockIconCache).getShortcutIcon(eq(expectedWai), any<CacheableShortcutInfo>()) in <lambda>()
DWorkspaceItemProcessorTest.kt137 whenever(mockIconCache.getShortcutIcon(any(), any(), any())).then {} in setup()
/packages/apps/Launcher3/src/com/android/launcher3/icons/
DIconCache.java261 public void getShortcutIcon(ItemInfoWithIcon info, ShortcutInfo si) { in getShortcutIcon() method in IconCache
262 getShortcutIcon(info, new CacheableShortcutInfo(si, context)); in getShortcutIcon()
268 public void getShortcutIcon(ItemInfoWithIcon info, CacheableShortcutInfo si) { in getShortcutIcon() method in IconCache
269 getShortcutIcon(info, si, mIsUsingFallbackOrNonDefaultIconCheck); in getShortcutIcon()
277 public <T extends ItemInfoWithIcon> void getShortcutIcon(T info, CacheableShortcutInfo si, in getShortcutIcon() method in IconCache
/packages/apps/Launcher3/src/com/android/launcher3/model/
DShortcutsChangedTask.kt90 taskController.iconCache.getShortcutIcon( in <lambda>()
DUserLockStateChangedTask.java93 taskController.getIconCache().getShortcutIcon(si, shortcut); in execute()
DItemInstallQueue.java319 .getShortcutIcon(itemInfo, shortcutInfo); in getItemInfo()
DWorkspaceItemProcessor.kt315 iconCache.getShortcutIcon(info, csi, c::loadIconFromDb) in processAppOrDeepShortcut()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupPopulator.java131 cache.getShortcutIcon(si, new CacheableShortcutInfo(shortcut, infoWrapper)); in createUpdateRunnable()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/model/
DPredictionUpdateTask.java87 iconCache.getShortcutIcon(itemInfo, si); in execute()
DQuickstepModelDelegate.java609 LauncherAppState.getInstance(mContext).getIconCache().getShortcutIcon(wii, si); in createInfo()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherModel.kt445 iconCache.getShortcutIcon(si, info) in <lambda>()
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DWorkspaceItemProcessorExtraTest.kt122 whenever(mockIconCache.getShortcutIcon(any(), any(), any())).then {} in setup()
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/icons/
DIconCacheTest.java192 runOnExecutorSync(MODEL_EXECUTOR, () -> mIconCache.getShortcutIcon(info, si)); in shortcutInfo_not_cached_in_memory()