Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/util/
DFocusLogic.java65 public static final int NEXT_PAGE_FIRST_ITEM = -8; field in FocusLogic
392 return increment < 0 ? NEXT_PAGE_FIRST_ITEM : PREVIOUS_PAGE_LAST_ITEM; in handleDpadHorizontal()
394 return increment < 0 ? PREVIOUS_PAGE_LAST_ITEM : NEXT_PAGE_FIRST_ITEM; in handleDpadHorizontal()
484 return NEXT_PAGE_FIRST_ITEM;
531 case NEXT_PAGE_FIRST_ITEM: return "NEXT_PAGE_FIRST";
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusHelper.java152 case FocusLogic.NEXT_PAGE_FIRST_ITEM: in onKey()
266 case FocusLogic.NEXT_PAGE_FIRST_ITEM: in handleHotseatButtonKeyEvent()
399 if (newIconIndex == FocusLogic.NEXT_PAGE_FIRST_ITEM) { in handleIconKeyEvent()
422 case FocusLogic.NEXT_PAGE_FIRST_ITEM: in handleIconKeyEvent()
438 if (newIconIndex == FocusLogic.NEXT_PAGE_FIRST_ITEM) { in handleIconKeyEvent()
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
DFocusLogicTest.java81 assertEquals(FocusLogic.NEXT_PAGE_FIRST_ITEM, i); in testMoveFromBottomRightToTopLeft()