Lines Matching full:occupied
977 boolean[][] occupied = mOccupied;
979 occupied = mTmpOccupied;
995 occupied[lp.cellX][lp.cellY] = false;
996 occupied[cellX][cellY] = true;
1206 * @param ignoreOccupied If true, the result can be an occupied cell
1343 * @param occoupied The array which represents which cells in the CellLayout are occupied
1345 * cellY, spanX, spanY) are occupied. This is used when try to move a group of views.
1352 boolean[][] occupied, boolean blockOccupied[][], int[] result) {
1367 if (occupied[x + i][y + j] && (blockOccupied == null || blockOccupied[i][j])) {
1685 // Mark the occupied state as false for the group of views we want to move.
1717 // Adding view to cluster, mark it as not occupied.
1741 // In either case, we set the occupied array as marked for the location of the views
1766 // Mark the occupied state as false for the group of views we want to move.
1775 // We mark more precisely which parts of the bounding rect are truly occupied, allowing
1799 // In either case, we set the occupied array as marked for the location of the views
1807 private void markCellsForRect(Rect r, boolean[][] occupied, boolean value) {
1808 markCellsForView(r.left, r.top, r.width(), r.height(), occupied, value);
1814 private boolean attemptPushInDirection(ArrayList<View> intersectingViews, Rect occupied,
1822 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1830 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1842 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1850 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1862 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1869 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1884 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1892 if (pushViewsToTempLocation(intersectingViews, occupied, direction,
1981 private void copyOccupiedArray(boolean[][] occupied) {
1984 occupied[i][j] = mOccupied[i][j];
1994 // Copy the current occupied array into the temporary occupied array. This array will be
2073 boolean[][] occupied = DESTRUCTIVE_REORDER ? mOccupied : mTmpOccupied;
2076 occupied[i][j] = false;
2088 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true);
2093 solution.dragViewSpanY, occupied, true);
2621 * @param ignoreView Considers space occupied by this view as unoccupied
2659 // an occupied cell
2768 private void markCellsForView(int cellX, int cellY, int spanX, int spanY, boolean[][] occupied,
2773 occupied[x][y] = value;