Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DTwoButtonNavbarTouchController.java23 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
81 if ((ev.getEdgeFlags() & EDGE_NAV_BAR) == 0) { in canInterceptTouchInternal()
DNoButtonNavbarToOverviewTouchController.java27 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
111 mDidTouchStartInNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in canInterceptTouch()
DQuickSwitchTouchController.java79 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
DNavBarToHomeTouchController.java117 boolean cameFromNavBar = (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0; in canInterceptTouch()
DTaskViewTouchController.java101 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0) { in canInterceptTouch()
DNoButtonQuickSwitchTouchController.java172 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/fallback/
DFallbackNavBarTouchController.java57 boolean cameFromNavBar = (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0; in onControllerInterceptTouchEvent()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DAllAppsEduView.java23 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
123 mCanInterceptTouch = (ev.getEdgeFlags() & EDGE_NAV_BAR) == 0; in shouldInterceptTouch()
DRecentsView.java45 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
1606 final boolean cameFromNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in onTouchEvent()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
DOverviewInputConsumer.java86 ev.setEdgeFlags(flags | Utilities.EDGE_NAV_BAR); in onMotionEvent()
DOtherActivityInputConsumer.java28 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
192 ev.setEdgeFlags(edgeFlags | EDGE_NAV_BAR); in onMotionEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java144 public static final int EDGE_NAV_BAR = 1 << 8; field in Utilities