Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
H A DAbsSwipeUpHandler.java448 return mGestureState.getEndTarget() != HOME; in moveWindowWithRecentsScroll()
467 if (mGestureState.getEndTarget() != HOME) { in onLauncherStart()
535 mGestureState.runOnceAtState(STATE_END_TARGET_SET, in onLauncherPresentAndGestureStarted()
647 if (mGestureState.getEndTarget() != null) {
736 return mGestureState.getOverviewIntent();
1027 if (mGestureState.isHandlingAtomicEvent()) {
1244 if (mGestureState.getEndTarget().isLauncher) {
1262 if (mGestureState.getEndTarget() == HOME) {
1518 if (mGestureState.isRecentsAnimationRunning() && mGestureState.getEndTarget() != null
1702 if (mGestureState.getEndTarget() == HOME || mGestureState.getEndTarget() == NEW_TASK) {
[all …]
H A DTouchInteractionService.java351 private GestureState mGestureState = DEFAULT_STATE; field in TouchInteractionService
594 GestureState prevGestureState = new GestureState(mGestureState); in onInputEvent()
598 mGestureState = newGestureState; in onInputEvent()
599 mConsumer = newConsumer(prevGestureState, mGestureState, event); in onInputEvent()
604 mGestureState = createGestureState(mGestureState); in onInputEvent()
612 mGestureState, in onInputEvent()
652 boolean cancelGesture = mGestureState.getActivityInterface() != null in onInputEvent()
689 mGestureState, mInputMonitorCompat, progressProxy); in newConsumer()
869 mGestureState = DEFAULT_STATE; in reset()
973 if (mGestureState != null) { in dump()
[all …]
H A DFallbackSwipeHandler.java101 mRunningOverHome = ActivityManagerWrapper.isHomeTask(mGestureState.getRunningTask()); in FallbackSwipeHandler()
139 Intent intent = new Intent(mGestureState.getHomeIntent()); in createHomeAnimationFactory()
181 new ActivityManager.RunningTaskInfo[]{mGestureState.getRunningTask()}); in notifyGestureAnimationStartToRecents()
333 if (mRunningOverHome || mGestureState.getRunningTask() == null) { in addGestureContract()
337 TaskKey key = new TaskKey(mGestureState.getRunningTask()); in addGestureContract()
H A DSwipeUpAnimationLogic.java61 protected final GestureState mGestureState; field in SwipeUpAnimationLogic
82 mGestureState = gestureState; in SwipeUpAnimationLogic()
88 mTargetGluer = new RemoteTargetGluer(mContext, mGestureState.getActivityInterface()); in SwipeUpAnimationLogic()
99 mTransitionDragLength = mGestureState.getActivityInterface().getSwipeUpDestinationAndLength( in initTransitionEndpoints()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
H A DOverviewWithoutFocusInputConsumer.java46 private final GestureState mGestureState; field in OverviewWithoutFocusInputConsumer
52 mGestureState = gestureState; in OverviewWithoutFocusInputConsumer()
83 mContext.startActivity(mGestureState.getHomeIntent()); in onSwipeUp()
89 int state = (mGestureState != null && mGestureState.getEndTarget() != null) in onSwipeUp()
90 ? mGestureState.getEndTarget().containerType in onSwipeUp()
H A DProgressDelegateInputConsumer.java75 private final GestureState mGestureState; field in ProgressDelegateInputConsumer
94 mGestureState = gestureState; in ProgressDelegateInputConsumer()
129 Intent intent = mGestureState.getHomeIntent() in onDragStart()
130 .putExtra(INTENT_EXTRA_LOG_TRACE_ID, mGestureState.getGestureId()); in onDragStart()
131 mTaskAnimationManager.startRecentsAnimation(mGestureState, intent, this); in onDragStart()
H A DDeviceLockedInputConsumer.java87 private final GestureState mGestureState; field in DeviceLockedInputConsumer
113 mGestureState = gestureState; in DeviceLockedInputConsumer()
229 Intent intent = mGestureState.getHomeIntent() in startRecentsTransition()
230 .putExtra(INTENT_EXTRA_LOG_TRACE_ID, mGestureState.getGestureId()); in startRecentsTransition()
231 mTaskAnimationManager.startRecentsAnimation(mGestureState, intent, this); in startRecentsTransition()
H A DOtherActivityInputConsumer.java93 private final GestureState mGestureState; field in OtherActivityInputConsumer
152 mGestureState = gestureState; in OtherActivityInputConsumer()
155 mActivityInterface = mGestureState.getActivityInterface(); in OtherActivityInputConsumer()
388 mInteractionHandler = mHandlerFactory.newHandler(mGestureState, touchTimeMs);
394 mActiveCallbacks = mTaskAnimationManager.continueRecentsAnimation(mGestureState);
400 intent.putExtra(INTENT_EXTRA_LOG_TRACE_ID, mGestureState.getGestureId());
401 mActiveCallbacks = mTaskAnimationManager.startRecentsAnimation(mGestureState, intent,
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
H A DInputProxyHandlerFactory.java35 private final GestureState mGestureState; field in InputProxyHandlerFactory
41 mGestureState = gestureState; in InputProxyHandlerFactory()
51 : new OverviewInputConsumer(mGestureState, activity, null, true); in get()