Searched defs:taskCount (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/ |
H A D | TaskGridLayoutAlgorithm.java | 75 TaskGridRectInfo(int taskCount) { argument 77 xOffsets = new int[taskCount]; 78 yOffsets = new int[taskCount]; 80 int layoutTaskCount = Math.min(MAX_LAYOUT_TASK_COUNT, taskCount); 123 for (int taskIndex = 0; taskIndex < taskCount; taskIndex++) { 125 int taskLayoutIndex = taskCount - taskIndex - 1; 136 private int getTasksPerLine(int taskCount) { argument 137 switch(taskCount) { 153 throw new IllegalArgumentException("Unsupported task count " + taskCount); 189 * @param taskCount Th 194 getTransform(int taskIndex, int taskCount, TaskViewTransform transformOut, TaskStackLayoutAlgorithm stackLayout) argument 238 navigateFocus(int taskCount, int currentFocusedIndex, Direction direction) argument 306 updateTaskGridRect(int taskCount) argument [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/ |
H A D | TaskStackLowRamLayoutAlgorithm.java | 123 TaskViewTransform transformOut, int taskCount, TaskStackLayoutAlgorithm stackLayout) { 124 if (taskCount == 0) { 130 if (taskCount > 1) { 201 * @param taskCount the amount of tasks in the recents stack 204 public float getMaxScrollP(int taskCount) { argument 205 return getScrollPForTask(taskCount - 1); 210 * @param taskCount the amount of tasks currently in recents 214 public float getInitialScrollP(int taskCount, boolean fromHome) { argument 216 return getMaxScrollP(taskCount); 218 if (taskCount < 122 getTransform(int taskIndex, float stackScroll, TaskViewTransform transformOut, int taskCount, TaskStackLayoutAlgorithm stackLayout) argument 245 getTotalHeightOfTasks(int taskCount) argument [all...] |
Completed in 28 milliseconds