HomeSort by relevance Sort by last modified time
    Searched refs:countX (Results 1 - 16 of 16) 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;
761 int countX = mContent.getCountX();
766 int oldCountX = countX;
768 if (countX * countY < count) {
770 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
771 countX++;
776 } 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/
Folder.java 359 final int countX = mContent.getCountX();
361 int x = i % countX;
362 int y = i / countX;
845 int countX = mContent.getCountX();
850 int oldCountX = countX;
852 if (countX * countY < count) {
854 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
855 countX++;
860 } else if ((countY - 1) * countX >= count && countY >= countX)
    [all...]
ShortcutAndWidgetContainer.java 55 int countX, int countY) {
60 mCountX = countX;
FocusHelper.java 281 int countX;
286 countX = ((CellLayout) parentLayout).getCountX();
290 countX = ((PagedViewGridLayout) parentLayout).getCellCountX();
304 final int x = iconIndex % countX;
305 final int y = iconIndex / countX;
355 int newiconIndex = ((y - 1) * countX) + x;
367 int newiconIndex = Math.min(itemCount - 1, ((y + 1) * countX) + x);
    [all...]
AppWidgetResizeFrame.java 240 int countX = mCellLayout.getCountX();
274 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
DynamicGrid.java 345 int calculateCellWidth(int width, int countX) {
346 return width / countX;
CellLayout.java     [all...]
LauncherModel.java     [all...]
Workspace.java     [all...]
  /external/chromium_org/third_party/skia/src/core/
SkEdgeClipper.cpp 209 int countX = SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
210 for (int x = 0; x <= countX; x++) {
417 int countX = SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
418 for (int x = 0; x <= countX; x++) {
  /external/skia/src/core/
SkEdgeClipper.cpp 209 int countX = SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
210 for (int x = 0; x <= countX; x++) {
417 int countX = SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
418 for (int x = 0; x <= countX; x++) {
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]

Completed in 666 milliseconds