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;
83 if ((ev.getEdgeFlags() & EDGE_NAV_BAR) == 0) { in canInterceptTouchInternal()
DNoButtonNavbarToOverviewTouchController.java24 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
85 mDidTouchStartInNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in canInterceptTouch()
DQuickSwitchTouchController.java78 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
DNavBarToHomeTouchController.java103 boolean cameFromNavBar = (ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0; in canInterceptTouch()
DTaskViewTouchController.java90 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) != 0) { in canInterceptTouch()
DNoButtonQuickSwitchTouchController.java157 if ((ev.getEdgeFlags() & Utilities.EDGE_NAV_BAR) == 0) { in canInterceptTouch()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DAllAppsEduView.java20 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
125 mCanInterceptTouch = (ev.getEdgeFlags() & EDGE_NAV_BAR) == 0; in shouldInterceptTouch()
DRecentsView.java30 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
1050 final boolean cameFromNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0; in onTouchEvent()
/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/inputconsumers/
DOtherActivityInputConsumer.java28 import static com.android.launcher3.Utilities.EDGE_NAV_BAR;
228 ev.setEdgeFlags(edgeFlags | EDGE_NAV_BAR); in onMotionEvent()
DOverviewInputConsumer.java82 ev.setEdgeFlags(flags | Utilities.EDGE_NAV_BAR); in onMotionEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java131 public static final int EDGE_NAV_BAR = 1 << 8; field in Utilities