Lines Matching defs:occupied
240 boolean[][] occupied = new boolean[xCount][yCount];
253 occupied[x][y] = true;
260 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
1647 // check & update map of what's occupied; used to discard overlapping/invalid items
1648 private boolean checkItemPlacement(HashMap<Long, ItemInfo[][]> occupied, ItemInfo item,
1663 + item.cellY + ") occupied by all apps");
1668 occupied.get((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT);
1682 + item.cellY + ") occupied by "
1683 + occupied.get(LauncherSettings.Favorites.CONTAINER_HOTSEAT)
1693 occupied.put((long) LauncherSettings.Favorites.CONTAINER_HOTSEAT, items);
1701 if (!occupied.containsKey(item.screenId)) {
1703 occupied.put(item.screenId, items);
1706 final ItemInfo[][] screens = occupied.get(item.screenId);
1724 + ") occupied by "
1803 final HashMap<Long, ItemInfo[][]> occupied = new HashMap<Long, ItemInfo[][]>();
1933 // check & update map of what's occupied
1935 if (!checkItemPlacement(occupied, info, deleteOnInvalidPlacement)) {
1978 // check & update map of what's occupied
1980 if (!checkItemPlacement(occupied, folderInfo,
2043 // check & update map of what's occupied
2045 if (!checkItemPlacement(occupied, appWidgetInfo,
2181 int nScreens = occupied.size();
2185 Iterator<Long> iter = occupied.keySet().iterator();
2192 line += ((occupied.get(screenId)[x][y] != null) ? "#" : ".");