Home
last modified time | relevance | path

Searched refs:currentPageTaskViewId (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/quickstep/util/
DTaskGridNavHelperTest.java34 int currentPageTaskViewId = 1; in equalLengthRows_noFocused_onTop_pressDown_goesToBottom() local
42 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in equalLengthRows_noFocused_onTop_pressDown_goesToBottom()
51 int currentPageTaskViewId = 1; in equalLengthRows_noFocused_onTop_pressUp_goesToBottom() local
59 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in equalLengthRows_noFocused_onTop_pressUp_goesToBottom()
68 int currentPageTaskViewId = 2; in equalLengthRows_noFocused_onBottom_pressDown_goesToTop() local
76 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in equalLengthRows_noFocused_onBottom_pressDown_goesToTop()
85 int currentPageTaskViewId = 2; in equalLengthRows_noFocused_onBottom_pressUp_goesToTop() local
93 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in equalLengthRows_noFocused_onBottom_pressUp_goesToTop()
102 int currentPageTaskViewId = 1; in equalLengthRows_noFocused_onTop_pressLeft_goesLeft() local
110 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in equalLengthRows_noFocused_onTop_pressLeft_goesLeft()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DTaskGridNavHelper.java87 public int getNextGridPage(int currentPageTaskViewId, int delta, in getNextGridPage() argument
89 boolean inTop = mTopRowIds.contains(currentPageTaskViewId); in getNextGridPage()
90 int index = inTop ? mTopRowIds.indexOf(currentPageTaskViewId) in getNextGridPage()
91 : mBottomRowIds.indexOf(currentPageTaskViewId); in getNextGridPage()
109 boolean inOriginalTop = mOriginalTopRowIds.contains(currentPageTaskViewId); in getNextGridPage()
122 if (mTopRowIds.contains(currentPageTaskViewId)) { in getNextGridPage()
133 return currentPageTaskViewId; in getNextGridPage()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java4223 int currentPageTaskViewId; in getNextPageInternal() local
4225 currentPageTaskViewId = currentPageTaskView.getTaskViewId(); in getNextPageInternal()
4227 currentPageTaskViewId = TaskGridNavHelper.CLEAR_ALL_PLACEHOLDER_ID; in getNextPageInternal()
4233 taskGridNavHelper.getNextGridPage(currentPageTaskViewId, delta, direction, cycle); in getNextPageInternal()