Home
last modified time | relevance | path

Searched refs:numTasks (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaplTestsQuickstep.java164 final Integer numTasks = getFromRecentsView(RecentsView::getTaskViewCount); in testOverview() local
170 numTasks - 1, recentsView.getTaskViewCount())); in testOverview()
425 final Integer numTasks = getFromRecentsView(RecentsView::getTaskViewCount); in testOverviewForTablet() local
429 numTasks - 1, recentsView.getTaskViewCount())); in testOverviewForTablet()
550 final Integer numTasks = getFromRecentsView(RecentsView::getTaskViewCount); in testDismissCancel() local
558 numTasks == null ? 0 : numTasks, recentsView.getTaskViewCount())); in testDismissCancel()
570 final Integer numTasks = getFromRecentsView(RecentsView::getTaskViewCount); in testDismissBottomRow() local
579 numTasks - 1, recentsView.getTaskViewCount())); in testDismissBottomRow()
599 final Integer numTasks = getFromRecentsView(RecentsView::getTaskViewCount); in testDismissLastGridRow() local
608 numTasks - 1, recentsView.getTaskViewCount())); in testDismissLastGridRow()
DFallbackRecentsTest.java301 final Integer numTasks = getFromRecents(this::getTaskCount); in testOverview() local
307 numTasks - 1, getTaskCount(recents))); in testOverview()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRecentTasksList.java187 public void getTaskKeys(int numTasks, Consumer<ArrayList<GroupTask>> callback) { in getTaskKeys() argument
190 ArrayList<GroupTask> tasks = loadTasksInBackground(numTasks, -1, in getTaskKeys()
375 TaskLoadResult loadTasksInBackground(int numTasks, int requestId, boolean loadKeysOnly) { in loadTasksInBackground() argument
379 rawTasks = mSysUiProxy.getRecentTasks(numTasks, currentUserId); in loadTasksInBackground()
DSystemUiProxy.kt1047 fun getRecentTasks(numTasks: Int, userId: Int): ArrayList<GroupedTaskInfo> { in <lambda>()
1055 numTasks, in <lambda>()
1067 fun getRunningTasks(numTasks: Int): List<RunningTaskInfo> { in <lambda>()
1070 return recentTasks?.getRunningTasks(numTasks)?.asList() ?: emptyList() in <lambda>()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/recents/domain/usecase/
DOrganizeDesktopTasksUseCase.kt203 val numTasks = taskBounds.size in <lambda>() constant
216 for (i in 0 until numTasks) { in <lambda>()