Searched refs:NAVIGATION_HINT_BACK_ALT (Results 1 – 4 of 4) sorted by relevance
17 import static android.app.StatusBarManager.NAVIGATION_HINT_BACK_ALT;232 assertEquals(NAVIGATION_HINT_BACK_ALT | NAVIGATION_HINT_IME_SHOWN, in testSetImeWindowStatusWhenImeSwitchOnDisplay()234 assertFalse((externalNavBar.getNavigationIconHints() & NAVIGATION_HINT_BACK_ALT) != 0); in testSetImeWindowStatusWhenImeSwitchOnDisplay()243 assertEquals(NAVIGATION_HINT_BACK_ALT | NAVIGATION_HINT_IME_SHOWN, in testSetImeWindowStatusWhenImeSwitchOnDisplay()245 assertFalse((defaultNavBar.getNavigationIconHints() & NAVIGATION_HINT_BACK_ALT) != 0); in testSetImeWindowStatusWhenImeSwitchOnDisplay()
533 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in orientBackButton()607 final boolean newBackAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in setNavigationIconHints()609 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in setNavigationIconHints()653 (mNavigationIconHints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; in updateNavButtonIcons()
17 import static android.app.StatusBarManager.NAVIGATION_HINT_BACK_ALT;728 hints |= NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()730 hints &= ~NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()734 hints &= ~NAVIGATION_HINT_BACK_ALT; in setImeWindowStatus()
162 public static final int NAVIGATION_HINT_BACK_ALT = 1 << 0; field in StatusBarManager