Home
last modified time | relevance | path

Searched refs:GestureState (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DTouchInteractionService.java26 import static com.android.quickstep.GestureState.DEFAULT_STATE;
286 private GestureState mGestureState = DEFAULT_STATE;
482 GestureState prevGestureState = new GestureState(mGestureState); in onInputEvent()
483 GestureState newGestureState = createGestureState(mGestureState); in onInputEvent()
541 private GestureState createGestureState(GestureState previousGestureState) { in createGestureState()
542 GestureState gestureState = new GestureState(mOverviewComponentObserver, in createGestureState()
556 private InputConsumer newConsumer(GestureState previousGestureState, in newConsumer()
557 GestureState newGestureState, MotionEvent event) { in newConsumer()
649 private InputConsumer newBaseConsumer(GestureState previousGestureState, in newBaseConsumer()
650 GestureState gestureState, MotionEvent event) { in newBaseConsumer()
[all …]
DBaseSwipeUpHandlerV2.java33 import static com.android.quickstep.GestureState.GestureEndTarget.HOME;
34 import static com.android.quickstep.GestureState.GestureEndTarget.LAST_TASK;
35 import static com.android.quickstep.GestureState.GestureEndTarget.NEW_TASK;
36 import static com.android.quickstep.GestureState.GestureEndTarget.RECENTS;
37 import static com.android.quickstep.GestureState.STATE_END_TARGET_ANIMATION_FINISHED;
38 import static com.android.quickstep.GestureState.STATE_END_TARGET_SET;
39 import static com.android.quickstep.GestureState.STATE_RECENTS_SCROLLING_FINISHED;
80 import com.android.quickstep.GestureState.GestureEndTarget;
204 TaskAnimationManager taskAnimationManager, GestureState gestureState, in BaseSwipeUpHandlerV2()
DBaseSwipeUpHandler.java86 GestureState gestureState, InputConsumerController inputConsumer) { in BaseSwipeUpHandler()
383 GestureState gestureState, long touchTimeMs, boolean continuingLastGesture); in newHandler()
DSwipeUpAnimationLogic.java57 protected final GestureState mGestureState;
80 GestureState gestureState, TransformParams transformParams) { in SwipeUpAnimationLogic()
DLauncherSwipeHandlerV2.java43 TaskAnimationManager taskAnimationManager, GestureState gestureState, long touchTimeMs, in LauncherSwipeHandlerV2()
DFallbackSwipeHandler.java55 TaskAnimationManager taskAnimationManager, GestureState gestureState, long touchTimeMs, in FallbackSwipeHandler()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DGestureState.java41 public class GestureState implements RecentsAnimationCallbacks.RecentsAnimationListener { class
74 public static final GestureState DEFAULT_STATE = new GestureState();
136 public GestureState(OverviewComponentObserver componentObserver, int gestureId) { in GestureState() method in GestureState
144 public GestureState(GestureState other) { in GestureState() method in GestureState
157 public GestureState() { in GestureState() method in GestureState
DTaskAnimationManager.java20 import static com.android.quickstep.GestureState.STATE_RECENTS_ANIMATION_INITIALIZED;
21 import static com.android.quickstep.GestureState.STATE_RECENTS_ANIMATION_STARTED;
40 private GestureState mLastGestureState;
56 public RecentsAnimationCallbacks startRecentsAnimation(GestureState gestureState, in startRecentsAnimation()
130 public RecentsAnimationCallbacks continueRecentsAnimation(GestureState gestureState) { in continueRecentsAnimation()
DRecentsAnimationDeviceState.java661 void onEndTargetCalculated(GestureState.GestureEndTarget endTarget, in onEndTargetCalculated()
663 if (endTarget == GestureState.GestureEndTarget.RECENTS) { in onEndTargetCalculated()
670 } else if (endTarget == GestureState.GestureEndTarget.HOME) { in onEndTargetCalculated()
672 } else if (endTarget == GestureState.GestureEndTarget.NEW_TASK) { in onEndTargetCalculated()
685 } else if (endTarget == GestureState.GestureEndTarget.LAST_TASK) { in onEndTargetCalculated()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/inputconsumers/
DOverscrollInputConsumer.java40 import com.android.quickstep.GestureState;
77 private final GestureState mGestureState;
84 public OverscrollInputConsumer(Context context, GestureState gestureState, in OverscrollInputConsumer()
179 mGestureState.setState(GestureState.STATE_OVERSCROLL_WINDOW_CREATED); in onMotionEvent()
DOverviewWithoutFocusInputConsumer.java33 import com.android.quickstep.GestureState;
46 private final GestureState mGestureState;
49 RecentsAnimationDeviceState deviceState, GestureState gestureState, in OverviewWithoutFocusInputConsumer()
DOtherActivityInputConsumer.java31 import static com.android.quickstep.GestureState.STATE_OVERSCROLL_WINDOW_CREATED;
58 import com.android.quickstep.GestureState;
88 private final GestureState mGestureState;
133 TaskAnimationManager taskAnimationManager, GestureState gestureState, in OtherActivityInputConsumer()
DScreenPinnedInputConsumer.java24 import com.android.quickstep.GestureState;
41 public ScreenPinnedInputConsumer(Context context, GestureState gestureState) { in ScreenPinnedInputConsumer()
DDeviceLockedInputConsumer.java46 import com.android.quickstep.GestureState;
84 private final GestureState mGestureState;
105 TaskAnimationManager taskAnimationManager, GestureState gestureState, in DeviceLockedInputConsumer()
DOverviewInputConsumer.java33 import com.android.quickstep.GestureState;
55 public OverviewInputConsumer(GestureState gestureState, T activity, in OverviewInputConsumer()
DAssistantInputConsumer.java52 import com.android.quickstep.GestureState;
97 GestureState gestureState, in AssistantInputConsumer()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DSwipeUpGestureTutorialController.java51 import com.android.quickstep.GestureState;
73 new GestureState(observer, -1)); in SwipeUpGestureTutorialController()
172 GestureState gestureState) { in ViewSwipeUpAnimation()