Home
last modified time | relevance | path

Searched refs:EDGE_NAV_BAR (Results 1 – 8 of 8) 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.java26 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
195 ev.setEdgeFlags(edgeFlags | EDGE_NAV_BAR); in onMotionEvent()
DOverviewInputConsumer.java89 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.java78 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
DNavBarToHomeTouchController.java94 boolean cameFromNavBar = (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0; in canInterceptTouch()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DRecentsView.java26 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
509 final boolean cameFromNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in onTouchEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java128 public static final int EDGE_NAV_BAR = 1 << 8; field in Utilities