Lines Matching defs:cellY
197 * <container, screen, cellX, cellY>
200 int screen, int cellX, int cellY) {
203 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
206 moveItemInDatabase(context, item, container, screen, cellX, cellY);
251 * Move an item in the DB to a new <container, screen, cellX, cellY>
254 final int screen, final int cellX, final int cellY) {
257 item.cellY = cellY;
263 item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
271 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
278 * Resize an item in the DB to a new <spanX, spanY, cellX, cellY>
281 final int cellY, final int spanX, final int spanY) {
285 item.cellY = cellY;
292 values.put(LauncherSettings.Favorites.CELLY, cellY);
303 item.updateValuesWithCoordinates(values, item.cellX, item.cellY);
349 item.cellY = c.getInt(cellYIndex);
398 folderInfo.cellY = c.getInt(cellYIndex);
411 * cellY fields of the item. Also assigns an ID to the item.
414 final int screen, final int cellX, final int cellY, final boolean notify) {
417 item.cellY = cellY;
422 item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
434 item.updateValuesWithCoordinates(values, item.cellX, item.cellY);
931 + " into position (" + item.screen + ":" + item.cellX + "," + item.cellY
945 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
957 for (int y = item.cellY; y < (item.cellY+item.spanY); y++) {
1061 info.cellY = c.getInt(cellYIndex);
1107 folderInfo.cellY = c.getInt(cellYIndex);
1144 appWidgetInfo.cellY = c.getInt(cellYIndex);
1775 int cellX, int cellY, boolean notify) {
1780 addItemToDatabase(context, info, container, screen, cellX, cellY, notify);