Searched defs:countX (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DShortcutAndWidgetContainer.java52 int countX) {
57 mCountX = countX;
51 setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap, int countX) argument
H A DCellLayout.java929 int countX, int countY, int orientation) {
930 int numWidthGaps = countX - 1;
967 int hFreeSpace = hSpace - (countX * cellWidth);
1189 final int countX = mCountX;
1197 int rightOverhang = result[0] + spanX - countX;
1392 final int countX = mCountX;
1402 for (int x = 0; x < countX - (minSpanX - 1); x++) {
1426 if (x + xSize > countX -1 || occupied[x + xSize][y + j]) {
1525 final int countX = mCountX;
1530 for (int x = 0; x < countX
928 getMetrics(Rect metrics, Resources res, int measureWidth, int measureHeight, int countX, int countY, int orientation) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DShortcutAndWidgetContainer.java59 int countX, int countY) {
64 mCountX = countX;
58 setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap, int countX, int countY) argument
H A DDeviceProfile.java362 public static int calculateCellWidth(int width, int countX) { argument
363 return width / countX;
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DFocusLogic.java431 private static boolean isValid(int xPos, int yPos, int countX, int countY) { argument
432 return (0 <= xPos && xPos < countX && 0 <= yPos && yPos < countY);

Completed in 129 milliseconds