HomeSort by relevance Sort by last modified time
    Searched refs:occupied (Results 1 - 6 of 6) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 203 final boolean[][] occupied = mOccupied;
204 findOccupiedCells(xCount, yCount, occupied, null);
212 cellXY[1] < yCount && !occupied[cellXY[0]][cellXY[1]];
244 final boolean[][] occupied = mOccupied;
245 findOccupiedCells(xCount, yCount, occupied, null);
247 findIntersectingVacantCells(info, info.cellX, info.cellY, xCount, yCount, occupied);
255 int xCount, int yCount, boolean[][] occupied) {
263 if (occupied[x][y]) {
269 findVacantCell(cellInfo.current, xCount, yCount, occupied, cellInfo);
272 private static void findVacantCell(Rect current, int xCount, int yCount, boolean[][] occupied,
    [all...]
InstallShortcutReceiver.java 90 boolean[][] occupied = new boolean[xCount][yCount];
113 occupied[x][y] = true;
123 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
LauncherModel.java 671 // check & update map of what's occupied; used to discard overlapping/invalid items
672 private boolean checkItemPlacement(ItemInfo occupied[][][], ItemInfo item) {
679 if (occupied[item.screen][x][y] != null) {
683 + ") occupied by "
684 + occupied[item.screen][x][y]);
691 occupied[item.screen][x][y] = item;
715 final ItemInfo occupied[][][] = new ItemInfo[Launcher.SCREEN_COUNT][Launcher.NUMBER_CELLS_X][Launcher.NUMBER_CELLS_Y]; local
    [all...]
Workspace.java 394 CellLayout.CellInfo findAllVacantCells(boolean[] occupied) {
397 return group.findAllVacantCells(occupied, null);
    [all...]
Launcher.java     [all...]
  /external/v8/tools/
codemap.js 61 * Map of memory pages occupied with static code.

Completed in 73 milliseconds