Searched defs:iconCache (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DAllAppsList.java50 public AllAppsList(IconCache iconCache) { argument
51 mIconCache = iconCache;
H A DApplicationInfo.java67 public ApplicationInfo(LauncherActivityInfo info, UserHandle user, IconCache iconCache, argument
83 iconCache.getTitleAndIcon(this, info, labelCache);
H A DShortcutInfo.java90 public Bitmap getIcon(IconCache iconCache) { argument
92 updateIcon(iconCache);
97 public void updateIcon(IconCache iconCache) { argument
98 mIcon = iconCache.getIcon(intent, user);
99 usingFallbackIcon = iconCache.isDefaultIcon(mIcon);
H A DBubbleTextView.java90 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) { argument
91 Bitmap b = info.getIcon(iconCache);
H A DFolderIcon.java124 FolderInfo folderInfo, IconCache iconCache) {
123 fromXml(int resId, Launcher launcher, ViewGroup group, FolderInfo folderInfo, IconCache iconCache) argument
H A DLauncherModel.java178 LauncherModel(LauncherApplication app, IconCache iconCache) { argument
181 mBgAllAppsList = new AllAppsList(iconCache);
182 mIconCache = iconCache;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppInfo.java80 IconCache iconCache, HashMap<Object, CharSequence> labelCache) {
86 iconCache.getTitleAndIcon(this, info, labelCache);
79 AppInfo(Context context, LauncherActivityInfoCompat info, UserHandleCompat user, IconCache iconCache, HashMap<Object, CharSequence> labelCache) argument
H A DAllAppsList.java58 public AllAppsList(IconCache iconCache, AppFilter appFilter) { argument
59 mIconCache = iconCache;
H A DHotseat.java185 void addAllAppsFolder(IconCache iconCache, argument
202 getLayout(), fi, iconCache);
H A DShortcutInfo.java169 public Bitmap getIcon(IconCache iconCache) { argument
171 updateIcon(iconCache);
176 public void updateIcon(IconCache iconCache) { argument
177 mIcon = iconCache.getIcon(promisedIntent != null ? promisedIntent : intent, user);
178 usingFallbackIcon = iconCache.isDefaultIcon(mIcon, user);
H A DBubbleTextView.java114 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache, argument
116 applyFromShortcutInfo(info, iconCache, setDefaultPadding, false);
119 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache, argument
121 Bitmap b = info.getIcon(iconCache);
H A DLauncherBackupHelper.java933 private byte[] packWidget(int dpi, WidgetPreviewLoader previewLoader, IconCache iconCache, argument
942 Drawable fullResIcon = iconCache.getFullResIcon(provider.getPackageName(), info.icon);
H A DFolderIcon.java140 FolderInfo folderInfo, IconCache iconCache) {
139 fromXml(int resId, Launcher launcher, ViewGroup group, FolderInfo folderInfo, IconCache iconCache) argument
H A DLauncherModel.java217 LauncherModel(LauncherAppState app, IconCache iconCache, AppFilter appFilter) { argument
240 mBgAllAppsList = new AllAppsList(iconCache, appFilter);
241 mIconCache = iconCache;

Completed in 157 milliseconds