Home
last modified time | relevance | path

Searched refs:getCountX (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/util/
DFocusLogic.java163 final int m = layout.getCountX(); in createSparseMatrix()
195 m = iconLayout.getCountX(); in createSparseMatrix()
198 m = iconLayout.getCountX() + hotseatLayout.getCountX(); in createSparseMatrix()
231 matrix[iconLayout.getCountX()][cy + delta] = iconParent.getChildCount() + i; in createSparseMatrix()
255 int[][] matrix = createFullMatrix(iconLayout.getCountX() + 1, iconLayout.getCountY()); in createSparseMatrix()
495 ? 0 : (((CellLayout) nextPage.getParent()).getCountX() - 1); in getAdjacentChildInNextPage()
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java87 final int countX = cellLayout.getCountX(); in onKey()
228 countX = iconLayout.getCountX(); in handleHotseatButtonKeyEvent()
237 countX = iconLayout.getCountX() + hotseatLayout.getCountX(); in handleHotseatButtonKeyEvent()
247 countX = hotseatLayout.getCountX(); in handleHotseatButtonKeyEvent()
307 int countX = iconLayout.getCountX(); in handleIconKeyEvent()
358 iconLayout.getCountX(), row); in handleIconKeyEvent()
DFolderPagedView.java389 sTempPosArray[0] = page.getCountX() - sTempPosArray[0] - 1; in findNearestArea()
426 for (int i = 0; i < page.getCountX(); i++) { in iterateOverItems()
DAppWidgetResizeFrame.java238 int countX = mCellLayout.getCountX(); in resizeWidgetIfNeeded()
DCellLayout.java594 public int getCountX() { in getCountX() method in CellLayout
DWorkspace.java637 int spanX = customScreen.getCountX(); in addToCustomContentPage()
/packages/apps/Launcher2/src/com/android/launcher2/
DFolder.java343 final int countX = mContent.getCountX(); in placeInReadingOrder()
431 mContent.getCountX(), mContent.getCountY())); in animateOpen()
538 || item.cellX >= mContent.getCountX() || item.cellY >= mContent.getCountY()) { in createAndAddShortcut()
582 wrap = empty[0] >= mContent.getCountX() - 1; in realTimeReorder()
586 endX = y < target[1] ? mContent.getCountX() - 1 : target[0]; in realTimeReorder()
602 startX = y == empty[1] ? empty[0] - 1 : mContent.getCountX() - 1; in realTimeReorder()
627 mTargetCell[0] = mContent.getCountX() - mTargetCell[0] - 1; in onDragOver()
764 int countX = mContent.getCountX(); in setupContentDimensions()
1075 for (int i = 0; i < mContent.getCountX(); i++) { in getViewForInfo()
1096 for (int i = 0; i < mContent.getCountX(); i++) { in getItemsInReadingOrder()
DAppWidgetResizeFrame.java241 int countX = mCellLayout.getCountX(); in resizeWidgetIfNeeded()
DFocusHelper.java570 final int cellCountX = layout.getCountX(); in getCellLayoutChildrenSortedSpatially()
DCellLayout.java603 int getCountX() { in getCountX() method in CellLayout
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DWorkspaceAccessibilityHelper.java45 int mCountX = mView.getCountX(); in intersectsValidDropTarget()
110 int x = id % mView.getCountX(); in getConfirmationForIconDrop()
111 int y = id / mView.getCountX(); in getConfirmationForIconDrop()
131 int x = id % mView.getCountX(); in getLocationDescriptionForIconDrop()
132 int y = id / mView.getCountX(); in getLocationDescriptionForIconDrop()
DDragAndDropAccessibilityDelegate.java64 int id = sTempArray[0] + sTempArray[1] * mView.getCountX(); in getVirtualViewAt()
78 int nCells = mView.getCountX() * mView.getCountY(); in getVisibleVirtualViews()
130 int cellX = id % mView.getCountX(); in getItemBounds()
131 int cellY = id / mView.getCountX(); in getItemBounds()
DFolderAccessibilityHelper.java40 mStartPosition = index * layout.getCountX() * layout.getCountY(); in FolderAccessibilityHelper()