Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DTaskGridNavHelper.java54 private void generateTaskViewIdGrid(IntArray topRowIdArray, IntArray bottomRowIdArray) { in generateTaskViewIdGrid() argument
57 Math.max(topRowIdArray.size(), bottomRowIdArray.size()) + (hasFocusedTask ? 1 : 0); in generateTaskViewIdGrid()
59 Math.min(topRowIdArray.size(), bottomRowIdArray.size()) + (hasFocusedTask ? 1 : 0); in generateTaskViewIdGrid()
64 bottomRowIdArray.add(0, mFocusedTaskId); in generateTaskViewIdGrid()
70 topRowIdArray.add(bottomRowIdArray.get(i)); in generateTaskViewIdGrid()
72 bottomRowIdArray.add(topRowIdArray.get(i)); in generateTaskViewIdGrid()
78 bottomRowIdArray.add(CLEAR_ALL_PLACEHOLDER_ID); in generateTaskViewIdGrid()
81 mBottomRowIds = bottomRowIdArray; in generateTaskViewIdGrid()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java1367 private TaskView getLastGridTaskView(IntArray topRowIdArray, IntArray bottomRowIdArray) { in getLastGridTaskView() argument
1368 if (topRowIdArray.isEmpty() && bottomRowIdArray.isEmpty()) { in getLastGridTaskView()
1371 int lastTaskViewId = topRowIdArray.size() >= bottomRowIdArray.size() ? topRowIdArray.get( in getLastGridTaskView()
1372 topRowIdArray.size() - 1) : bottomRowIdArray.get(bottomRowIdArray.size() - 1); in getLastGridTaskView()
4015 IntArray bottomRowIdArray = getBottomRowIdArray(); in createTaskDismissAnimation()
4019 getLastGridTaskView(topRowIdArray, bottomRowIdArray)); in createTaskDismissAnimation()
4030 pageToSnapTo, topRowIdArray, bottomRowIdArray); in createTaskDismissAnimation()
4130 IntArray bottomRowIdArray = getBottomRowIdArray(); in getHighestVisibleTaskIndex() local
4131 int balancedColumns = Math.min(bottomRowIdArray.size(), topRowIdArray.size()); in getHighestVisibleTaskIndex()
4137 TaskView bottomTask = getTaskViewFromTaskViewId(bottomRowIdArray.get(i)); in getHighestVisibleTaskIndex()
[all …]