Searched refs:NAVIGATION_HINT_BACK_ALT (Results 1 – 4 of 4) sorted by relevance
17 import static android.app.StatusBarManager.NAVIGATION_HINT_BACK_ALT;190 assertEquals(NAVIGATION_HINT_BACK_ALT | NAVIGATION_HINT_IME_SHOWN, in testSetImeWindowStatusWhenImeSwitchOnDisplay()192 assertFalse((externalNavBar.getNavigationIconHints() & NAVIGATION_HINT_BACK_ALT) != 0); in testSetImeWindowStatusWhenImeSwitchOnDisplay()201 assertEquals(NAVIGATION_HINT_BACK_ALT | NAVIGATION_HINT_IME_SHOWN, in testSetImeWindowStatusWhenImeSwitchOnDisplay()203 assertFalse((defaultNavBar.getNavigationIconHints() & NAVIGATION_HINT_BACK_ALT) != 0); in testSetImeWindowStatusWhenImeSwitchOnDisplay()
17 import static android.app.StatusBarManager.NAVIGATION_HINT_BACK_ALT;436 hints |= NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()438 hints &= ~NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()442 hints &= ~NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()
488 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in orientBackButton()550 final boolean newBackAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in setNavigationIconHints()552 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in setNavigationIconHints()596 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in updateNavButtonIcons()
157 public static final int NAVIGATION_HINT_BACK_ALT = 1 << 0; field in StatusBarManager