Searched defs:occupied (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Launcher2/
H A Dprint_db.py74 def render_cell_info(out, cell, occupied):
78 elif cell == occupied:
194 occupied = "occupied" variable
206 screen[j][k] = occupied
215 render_cell_info(out, cell, occupied)
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherModel.java1171 // check & update map of what's occupied; used to discard overlapping/invalid items
1172 private boolean checkItemPlacement(ItemInfo occupied[][][], ItemInfo item) { argument
1181 // test and update the occupied state accordingly
1182 if (occupied[Launcher.SCREEN_COUNT][item.screen][0] != null) {
1185 + ") occupied by " + occupied[Launcher.SCREEN_COUNT][item.screen][0]);
1188 occupied[Launcher.SCREEN_COUNT][item.screen][0] = item;
1199 if (occupied[containerIndex][x][y] != null) {
1203 + ") occupied by "
1204 + occupied[containerInde
[all...]
H A DCellLayout.java1087 boolean[][] occupied = mOccupied;
1089 occupied = mTmpOccupied;
1105 occupied[lp.cellX][lp.cellY] = false;
1106 occupied[cellX][cellY] = true;
1319 * @param ignoreOccupied If true, the result can be an occupied cell
1356 * @param ignoreOccupied If true, the result can be an occupied cell
1364 boolean[][] occupied) {
1367 markCellsAsUnoccupiedForView(ignoreView, occupied);
1398 if (occupied[x + i][y + j]) {
1415 if (x + xSize > countX -1 || occupied[
1362 findNearestArea(int pixelX, int pixelY, int minSpanX, int minSpanY, int spanX, int spanY, View ignoreView, boolean ignoreOccupied, int[] result, int[] resultSpan, boolean[][] occupied) argument
1507 findNearestArea(int cellX, int cellY, int spanX, int spanY, int[] direction, boolean[][] occupied, boolean blockOccupied[][], int[] result) argument
1964 markCellsForRect(Rect r, boolean[][] occupied, boolean value) argument
1971 attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied, int[] direction, View ignoreView, ItemConfiguration solution) argument
2136 copyOccupiedArray(boolean[][] occupied) argument
2838 findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY, View ignoreView, boolean occupied[][]) argument
3046 findVacantCell(int[] vacant, int spanX, int spanY, int xCount, int yCount, boolean[][] occupied) argument
3086 markCellsAsOccupiedForView(View view, boolean[][] occupied) argument
3095 markCellsAsUnoccupiedForView(View view, boolean occupied[][]) argument
3101 markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied, boolean value) argument
[all...]

Completed in 988 milliseconds