Lines Matching full:boolean
38 private boolean mPortrait;
59 boolean[][] mOccupied;
63 private boolean mDirtyTag;
64 private boolean mLastDownOnOccupiedCell = false;
101 mOccupied = new boolean[mShortAxisCells][mLongAxisCells];
103 mOccupied = new boolean[mLongAxisCells][mShortAxisCells];
162 public boolean onInterceptTouchEvent(MotionEvent ev) {
172 boolean found = false;
199 final boolean portrait = mPortrait;
203 final boolean[][] occupied = mOccupied;
240 final boolean portrait = mPortrait;
244 final boolean[][] occupied = mOccupied;
255 int xCount, int yCount, boolean[][] occupied) {
272 private static void findVacantCell(Rect current, int xCount, int yCount, boolean[][] occupied,
327 private static boolean isColumnEmpty(int x, int top, int bottom, boolean[][] occupied) {
336 private static boolean isRowEmpty(int y, int left, int right, boolean[][] occupied) {
345 CellInfo findAllVacantCells(boolean[] occupiedCells, View ignoreView) {
346 final boolean portrait = mPortrait;
350 boolean[][] occupied = mOccupied;
401 final boolean portrait = mPortrait;
437 final boolean portrait = mPortrait;
554 protected void onLayout(boolean changed, int l, int t, int r, int b) {
581 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
592 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
715 final boolean portrait = mPortrait;
764 public boolean getVacantCell(int[] vacant, int spanX, int spanY) {
765 final boolean portrait = mPortrait;
768 final boolean[][] occupied = mOccupied;
775 static boolean findVacantCell(int[] vacant, int spanX, int spanY,
776 int xCount, int yCount, boolean[][] occupied) {
780 boolean available = !occupied[x][y];
799 boolean[] getOccupiedCells() {
800 final boolean portrait = mPortrait;
803 final boolean[][] occupied = mOccupied;
807 final boolean[] flat = new boolean[xCount * yCount];
817 private void findOccupiedCells(int xCount, int yCount, boolean[][] occupied, View ignoreView) {
846 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
883 public boolean isDragging;
892 boolean regenerateId;
894 boolean dropped;
996 boolean valid;
1014 void findVacantCellsFromOccupied(boolean[] occupied, int xCount, int yCount) {
1022 final boolean[][] unflattened = new boolean[xCount][yCount];
1045 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
1049 boolean findCellForSpan(int[] cellXY, int spanX, int spanY, boolean clear) {
1053 boolean found = false;
1095 public boolean lastDownOnOccupiedCell() {