Home
last modified time | relevance | path

Searched refs:topRowIdArray (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()
63 topRowIdArray.add(0, mFocusedTaskId); in generateTaskViewIdGrid()
69 if (i >= topRowIdArray.size()) { in generateTaskViewIdGrid()
70 topRowIdArray.add(bottomRowIdArray.get(i)); in generateTaskViewIdGrid()
72 bottomRowIdArray.add(topRowIdArray.get(i)); in generateTaskViewIdGrid()
77 topRowIdArray.add(CLEAR_ALL_PLACEHOLDER_ID); in generateTaskViewIdGrid()
80 mTopRowIds = topRowIdArray; 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()
4014 IntArray topRowIdArray = getTopRowIdArray(); in createTaskDismissAnimation()
4019 getLastGridTaskView(topRowIdArray, bottomRowIdArray)); in createTaskDismissAnimation()
4030 pageToSnapTo, topRowIdArray, bottomRowIdArray); in createTaskDismissAnimation()
4129 IntArray topRowIdArray = getTopRowIdArray(); in getHighestVisibleTaskIndex() local
4131 int balancedColumns = Math.min(bottomRowIdArray.size(), topRowIdArray.size()); in getHighestVisibleTaskIndex()
4134 TaskView topTask = getTaskViewFromTaskViewId(topRowIdArray.get(i)); in getHighestVisibleTaskIndex()
[all …]