Home
last modified time | relevance | path

Searched refs:nextSize (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/model/
DGridSizeMigrationTask.java1023 Point nextSize = new Point(sourceSize);
1024 if (targetSize.x < nextSize.x) {
1025 nextSize.x--;
1027 if (targetSize.y < nextSize.y) {
1028 nextSize.y--;
1030 if (runStepTask(sourceSize, nextSize)) {
1033 sourceSize.set(nextSize.x, nextSize.y);
1039 protected boolean runStepTask(Point sourceSize, Point nextSize) throws Exception {
1041 mValidPackages, sourceSize, nextSize).migrateWorkspace();
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DGridSizeMigrationTaskTest.java433 protected boolean runStepTask(Point sourceSize, Point nextSize) throws Exception { in runStepTask() argument
435 assertEquals(nextSize, mPoints.poll()); in runStepTask()