Searched refs:iconIndex (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DCursorIconInfo.java36 public final int iconIndex; field in class:CursorIconInfo
40 iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
60 icon = Utilities.createIconBitmap(c, iconIndex, context);
64 icon = Utilities.createIconBitmap(c, iconIndex, context);
H A DFocusLogic.java312 Log.v(TAG, String.format("\thandleDpadHorizontal: \t[x, y]=[%d, %d] iconIndex=%d",
353 private static int handleDpadVertical(int iconIndex, int cntX, int cntY, argument
365 if (matrix[i][j] == iconIndex) {
373 Log.v(TAG, String.format("\thandleDpadVertical: \t[x, y]=[%d, %d] iconIndex=%d",
374 xPos, yPos, iconIndex));
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFocusHelper.java90 final int iconIndex = itemContainer.indexOfChild(v);
100 countY, matrix, iconIndex, pageIndex, pageCount, isLayoutRtl);
206 int iconIndex = hotseatParent.indexOfChild(v);
208 .getChildAt(iconIndex).getLayoutParams()).cellX;
227 iconIndex += iconParent.getChildCount();
236 iconIndex += iconParent.getChildCount();
254 countY, matrix, iconIndex, pageIndex, pageCount, Utilities.isRtl(v.getResources()));
304 final int iconIndex = parent.indexOfChild(v);
337 countY, matrix, iconIndex, pageIndex, pageCount, Utilities.isRtl(v.getResources()));
H A DIconCache.java859 private static Bitmap loadIconNoResize(Cursor c, int iconIndex, BitmapFactory.Options options) { argument
860 byte[] data = c.getBlob(iconIndex);
H A DUtilities.java130 public static Bitmap createIconBitmap(Cursor c, int iconIndex, Context context) { argument
131 byte[] data = c.getBlob(iconIndex);
H A DLauncherProvider.java1085 final int iconIndex
1216 values.put(LauncherSettings.Favorites.ICON, c.getBlob(iconIndex));
H A DLauncherModel.java1989 cursorIconInfo.iconIndex, titleIndex,
2012 cursorIconInfo.iconIndex, titleIndex,
3440 UserHandleCompat user, Context context, Cursor c, int iconIndex, int titleIndex,
3465 Bitmap icon = Utilities.createIconBitmap(c, iconIndex, context);
3439 getAppShortcutInfo(PackageManager manager, Intent intent, UserHandleCompat user, Context context, Cursor c, int iconIndex, int titleIndex, boolean allowMissingTarget, boolean useLowResIcon) argument
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DMaterialSearchSuggestionsList.java130 final int iconIndex = c.getColumnIndex(SearchManager.SUGGEST_COLUMN_ICON_1);
133 final Uri iconUri = Uri.parse(c.getString(iconIndex));
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFocusHelper.java300 final int iconIndex = itemContainer.indexOfChild(v);
305 final int x = iconIndex % countX;
306 final int y = iconIndex / countX;
319 if (iconIndex > 0) {
320 itemContainer.getChildAt(iconIndex - 1).requestFocus();
337 if (iconIndex < (itemCount - 1)) {
338 itemContainer.getChildAt(iconIndex + 1).requestFocus();
H A DLauncherModel.java1304 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
1362 manager, intent, user, context, c, iconIndex,
1366 iconPackageIndex, iconResourceIndex, iconIndex,
1413 queueIconToBeChecked(sBgDbIconCache, info, c, iconIndex);
2200 Cursor c, int iconIndex, int titleIndex, HashMap<Object, CharSequence> labelCache) {
2219 icon = getIconFromCursor(c, iconIndex, context);
2277 int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex,
2311 icon = getIconFromCursor(c, iconIndex, context);
2320 icon = getIconFromCursor(c, iconIndex, context);
2339 Bitmap getIconFromCursor(Cursor c, int iconIndex, Contex argument
2198 getShortcutInfo(PackageManager manager, Intent intent, UserHandle user, Context context, Cursor c, int iconIndex, int titleIndex, HashMap<Object, CharSequence> labelCache) argument
2276 getShortcutInfo(Cursor c, Context context, int iconTypeIndex, int iconPackageIndex, int iconResourceIndex, int iconIndex, int titleIndex) argument
2478 queueIconToBeChecked(HashMap<Object, byte[]> cache, ShortcutInfo info, Cursor c, int iconIndex) argument
[all...]
H A DLauncherProvider.java445 final int iconIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.ICON);
464 values.put(LauncherSettings.Favorites.ICON, c.getBlob(iconIndex));
725 final int iconIndex = c.getColumnIndexOrThrow(Favorites.ICON);
729 byte[] data = c.getBlob(iconIndex);

Completed in 203 milliseconds