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

  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 343 final int countX = mContent.getCountX();
345 int x = i % countX;
346 int y = i / countX;
764 int countX = mContent.getCountX();
769 int oldCountX = countX;
771 if (countX * countY < count) {
773 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
774 countX++;
779 } else if ((countY - 1) * countX >= count && countY >= countX)
    [all...]
ShortcutAndWidgetContainer.java 52 int countX) {
57 mCountX = countX;
FocusHelper.java 282 int countX;
287 countX = ((PagedViewCellLayout) parentLayout).getCellCountX();
291 countX = ((PagedViewGridLayout) parentLayout).getCellCountX();
305 final int x = iconIndex % countX;
306 final int y = iconIndex / countX;
356 int newiconIndex = ((y - 1) * countX) + x;
368 int newiconIndex = Math.min(itemCount - 1, ((y + 1) * countX) + x);
    [all...]
AppWidgetResizeFrame.java 241 int countX = mCellLayout.getCountX();
275 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
CellLayout.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 586 int countX = cellLayout.getCountX();
589 for (int x = isRtl ? countX - 1 : 0; 0 <= x && x < countX; x += increment) {
601 int countX = cellLayout.getCountX();
604 for (int x = isRtl ? 0 : countX - 1; 0 <= x && x < countX; x += increment) {
ShortcutAndWidgetContainer.java 58 int countX, int countY) {
63 mCountX = countX;
AppWidgetResizeFrame.java 249 int countX = mCellLayout.getCountX();
283 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
DeviceProfile.java 401 public static int calculateCellWidth(int width, int countX) {
402 return width / countX;
LauncherModel.java     [all...]
CellLayout.java     [all...]
Workspace.java     [all...]
  /external/skia/src/core/
SkEdgeClipper.cpp 211 int countX = SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
212 for (int x = 0; x <= countX; x++) {
378 int countX = SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
379 for (int x = 0; x <= countX; x++) {
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java 495 private static boolean isValid(int xPos, int yPos, int countX, int countY) {
496 return (0 <= xPos && xPos < countX && 0 <= yPos && yPos < countY);

Completed in 342 milliseconds