Lines Matching refs:CELLY
413 int bottom = r.cellY + r.spanY;
415 for (int y = r.cellY; 0 <= y && y < bottom && y < yCount; y++) {
618 * <container, screen, cellX, cellY>
621 long screenId, int cellX, int cellY) {
624 addItemToDatabase(context, item, container, screenId, cellX, cellY);
627 moveItemInDatabase(context, item, container, screenId, cellX, cellY);
646 modelShortcut.cellY == shortcut.cellY &&
775 * Move an item in the DB to a new <container, screen, cellX, cellY>
778 final long screenId, final int cellX, final int cellY) {
781 item.cellY = cellY;
787 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
795 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
803 * Move items in the DB to a new <container, screen, cellX, cellY>. We assume that the
804 * cellX, cellY have already been updated on the ItemInfos.
821 item.cellY);
829 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
839 * Move and/or resize item in the DB to a new <container, screen, cellX, cellY, spanX, spanY>
842 final long screenId, final int cellX, final int cellY, final int spanX, final int spanY) {
845 item.cellY = cellY;
853 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
861 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
948 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
964 folderInfo.cellY = c.getInt(cellYIndex);
978 * cellY fields of the item. Also assigns an ID to the item.
981 final long screenId, final int cellX, final int cellY) {
984 item.cellY = cellY;
989 item.screenId = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
1631 + item.cellY + ") occupied by all apps");
1650 + item.cellY + ") occupied by "
1681 item.cellX < 0 || item.cellY < 0 ||
1682 item.cellX + item.spanX > countX || item.cellY + item.spanY > countY) {
1685 + item.cellX + "," + item.cellY
1692 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
1704 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
1797 (LauncherSettings.Favorites.CELLY);
2039 info.cellY = c.getInt(cellYIndex);
2098 folderInfo.cellY = c.getInt(cellYIndex);
2220 appWidgetInfo.cellY = c.getInt(cellYIndex);
2479 lhs.cellY * cellCountX + lhs.cellX);
2481 rhs.cellY * cellCountX + rhs.cellX);