Home | History | Annotate | Download | only in launcher3

Lines Matching defs:occupied

424         boolean[][] occupied = new boolean[xCount][yCount];
431 occupied[x][y] = true;
436 return Utilities.findVacantCell(xy, spanX, spanY, xCount, yCount, occupied);
1643 // check & update map of what's occupied; used to discard overlapping/invalid items
1644 private boolean checkItemPlacement(LongArrayMap<ItemInfo[][]> occupied, ItemInfo item) {
1657 + item.cellY + ") occupied by all apps");
1662 occupied.get((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT);
1676 + item.cellY + ") occupied by "
1677 + occupied.get(LauncherSettings.Favorites.CONTAINER_HOTSEAT)
1687 occupied.put((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT, items);
1695 if (!occupied.containsKey(item.screenId)) {
1697 occupied.put(item.screenId, items);
1700 final ItemInfo[][] screens = occupied.get(item.screenId);
1718 + ") occupied by "
1789 final LongArrayMap<ItemInfo[][]> occupied = new LongArrayMap<>();
2049 // check & update map of what's occupied
2050 if (!checkItemPlacement(occupied, info)) {
2100 // check & update map of what's occupied
2101 if (!checkItemPlacement(occupied, folderInfo)) {
2222 // check & update map of what's occupied
2223 if (!checkItemPlacement(occupied, appWidgetInfo)) {
2318 int nScreens = occupied.size();
2323 long screenId = occupied.keyAt(i);
2327 ItemInfo[][] screen = occupied.valueAt(i);