HomeSort by relevance Sort by last modified time
    Searched refs:countY (Results 1 - 13 of 13) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/util/
GridOccupancy.java 17 public GridOccupancy(int countX, int countY) {
19 mCountY = countY;
20 cells = new boolean[countX][countY];
FocusLogic.java 503 private static boolean isValid(int xPos, int yPos, int countX, int countY) {
504 return (0 <= xPos && xPos < countX && 0 <= yPos && yPos < countY);
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 765 int countY = mContent.getCountY();
770 int oldCountY = countY;
771 if (countX * countY < count) {
773 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
775 } else if (countY < mMaxCountY) {
776 countY++;
778 if (countY == 0) countY++;
779 } else if ((countY - 1) * countX >= count && countY >= countX)
    [all...]
FocusHelper.java 283 int countY;
288 countY = ((PagedViewCellLayout) parentLayout).getCellCountY();
292 countY = ((PagedViewGridLayout) parentLayout).getCellCountY();
367 if (y < (countY - 1)) {
    [all...]
AppWidgetResizeFrame.java 242 int countY = mCellLayout.getCountY();
288 vSpanInc = Math.min(countY - (cellY + spanY), vSpanInc);
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/model/
LoaderCursor.java 437 final int countY = mIDP.numRows;
440 item.cellX + item.spanX > countX || item.cellY + item.spanY > countY) {
444 + ") out of screen bounds ( " + countX + "x" + countY + ")");
449 GridOccupancy screen = new GridOccupancy(countX + 1, countY + 1);
  /external/skia/src/core/
SkEdgeClipper.cpp 225 int countY = SkChopQuadAtYExtrema(srcPts, monoY);
226 for (int y = 0; y <= countY; y++) {
428 int countY = SkChopCubicAtYExtrema(srcPts, monoY);
429 for (int y = 0; y <= countY; y++) {
  /external/skqp/src/core/
SkEdgeClipper.cpp 225 int countY = SkChopQuadAtYExtrema(srcPts, monoY);
226 for (int y = 0; y <= countY; y++) {
428 int countY = SkChopCubicAtYExtrema(srcPts, monoY);
429 for (int y = 0; y <= countY; y++) {
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java 56 public void setCellDimensions(int cellWidth, int cellHeight, int countX, int countY) {
DeviceProfile.java 512 public static int calculateCellHeight(int height, int countY) {
513 return height / countY;
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderPagedView.java 115 * The grid size is calculated such that countY <= countX and countX = ceil(sqrt(count)) while
118 public static void calculateGridSize(int count, int countX, int countY, int maxCountX,
122 int gridCountY = countY;

Completed in 429 milliseconds