Home
last modified time | relevance | path

Searched refs:SYSUI_STATE_A11Y_BUTTON_CLICKABLE (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
H A DQuickStepContract.java81 public static final int SYSUI_STATE_A11Y_BUTTON_CLICKABLE = 1 << 4; field in QuickStepContract
132 SYSUI_STATE_A11Y_BUTTON_CLICKABLE,
168 str.add((flags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0 ? "a11y_click" : ""); in getSystemUiStateString()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
H A DTaskbarDelegate.java27 …port static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABLE;
263 boolean clickable = (a11yFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0;
266 mSysUiState.setFlag(SYSUI_STATE_A11Y_BUTTON_CLICKABLE, clickable)
H A DNavBarHelper.java21 …port static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABLE;
196 return (requestingServices >= 1 ? SYSUI_STATE_A11Y_BUTTON_CLICKABLE : 0) in getA11yButtonState()
H A DNavigationBar.java45 …port static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABLE;
1389 boolean clickable = (a11yFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0; in updateAcessibilityStateFlags()
1400 boolean clickable = (a11yFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0; in updateSystemUiStateFlags()
1403 mSysUiFlagsContainer.setFlag(SYSUI_STATE_A11Y_BUTTON_CLICKABLE, clickable) in updateSystemUiStateFlags()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
H A DRecentsAnimationDeviceState.java30 …port static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABLE;
475 return (mSystemUiStateFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0; in isAccessibilityMenuAvailable()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
H A DNavbarButtonsViewController.java25 …port static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABLE;
301 boolean a11yVisible = (sysUiStateFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0; in parseSystemUiFlags()