Home
last modified time | relevance | path

Searched refs:EDGE_NAV_BAR (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DLandscapeEdgeSwipeController.java5 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
39 return mLauncher.isInState(NORMAL) && (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in canInterceptTouch()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/inputconsumers/
DOtherActivityInputConsumer.java25 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
185 ev.setEdgeFlags(edgeFlags | EDGE_NAV_BAR); in onMotionEvent()
DOverviewInputConsumer.java91 ev.setEdgeFlags(flags | Utilities.EDGE_NAV_BAR); in onMotionEvent()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/
DOverviewToAllAppsTouchController.java56 return (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0; in canInterceptTouch()
DQuickSwitchTouchController.java79 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
DNavBarToHomeTouchController.java101 boolean cameFromNavBar = (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0; in canInterceptTouch()
DNoButtonQuickSwitchTouchController.java154 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DRecentsView.java25 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
512 final boolean cameFromNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in onTouchEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java114 public static final int EDGE_NAV_BAR = 1 << 8; field in Utilities