Lines Matching refs:cellLayout
102 final CellLayout cellLayout = (CellLayout) itemContainer.getParent(); in onKey() local
105 final FolderPagedView pagedView = (FolderPagedView) cellLayout.getParent(); in onKey()
107 final int pageIndex = pagedView.indexOfChild(cellLayout); in onKey()
111 int[][] matrix = FocusLogic.createSparseMatrix(cellLayout); in onKey()
166 child = cellLayout.getChildAt(0, 0); in onKey()
584 private static View getFirstFocusableIconInReadingOrder(CellLayout cellLayout, boolean isRtl) { in getFirstFocusableIconInReadingOrder() argument
586 int countX = cellLayout.getCountX(); in getFirstFocusableIconInReadingOrder()
587 for (int y = 0; y < cellLayout.getCountY(); y++) { in getFirstFocusableIconInReadingOrder()
590 if ((icon = cellLayout.getChildAt(x, y)) != null && icon.isFocusable()) { in getFirstFocusableIconInReadingOrder()
598 private static View getFirstFocusableIconInReverseReadingOrder(CellLayout cellLayout, in getFirstFocusableIconInReverseReadingOrder() argument
601 int countX = cellLayout.getCountX(); in getFirstFocusableIconInReverseReadingOrder()
602 for (int y = cellLayout.getCountY() - 1; y >= 0; y--) { in getFirstFocusableIconInReverseReadingOrder()
605 if ((icon = cellLayout.getChildAt(x, y)) != null && icon.isFocusable()) { in getFirstFocusableIconInReverseReadingOrder()