Searched refs:topRowIdArray (Results 1 – 2 of 2) sorted by relevance
54 private void generateTaskViewIdGrid(IntArray topRowIdArray, IntArray bottomRowIdArray) { in generateTaskViewIdGrid() argument57 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()
1367 private TaskView getLastGridTaskView(IntArray topRowIdArray, IntArray bottomRowIdArray) { in getLastGridTaskView() argument1368 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() local4131 int balancedColumns = Math.min(bottomRowIdArray.size(), topRowIdArray.size()); in getHighestVisibleTaskIndex()4134 TaskView topTask = getTaskViewFromTaskViewId(topRowIdArray.get(i)); in getHighestVisibleTaskIndex()[all …]