Home
last modified time | relevance | path

Searched refs:gestureState (Results 1 – 20 of 20) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DTouchInteractionService.java961 GestureState gestureState, MotionEvent motionEvent) {
963 InputConsumer.NO_OP, gestureState, motionEvent, CompoundString.NO_OP);
968 GestureState gestureState,
971 if (mDeviceState.isGestureBlockedTask(gestureState.getRunningTask())) {
978 this, gestureState, base, mInputMonitorCompat, mDeviceState, motionEvent);
984 final GestureState gestureState;
987 gestureState = new GestureState(mOverviewComponentObserver,
994 gestureState.updateRunningTask(taskInfo);
995 gestureState.updateLastStartedTaskIds(previousGestureState.getLastStartedTaskIds());
996 gestureState.updatePreviouslyAppearedTaskIds(
[all …]
DTaskAnimationManager.java133 public RecentsAnimationCallbacks startRecentsAnimation(@NonNull GestureState gestureState, in startRecentsAnimation() argument
158 final BaseContainerInterface containerInterface = gestureState.getContainerInterface(); in startRecentsAnimation()
159 mLastGestureState = gestureState; in startRecentsAnimation()
200 if (mLastGestureState != gestureState) return; in startRecentsAnimation()
329 final long eventTime = gestureState.getSwipeUpStartTimeMs(); in startRecentsAnimation()
330 mCallbacks.addListener(gestureState); in startRecentsAnimation()
368 gestureState.setState(STATE_RECENTS_ANIMATION_INITIALIZED); in startRecentsAnimation()
375 public RecentsAnimationCallbacks continueRecentsAnimation(GestureState gestureState) { in continueRecentsAnimation() argument
378 mLastGestureState = gestureState; in continueRecentsAnimation()
379 mCallbacks.addListener(gestureState); in continueRecentsAnimation()
[all …]
DOverviewCommandHelper.java345 GestureState gestureState = mService.createGestureState(GestureState.DEFAULT_STATE, in executeCommand() local
347 gestureState.setHandlingAtomicEvent(true); in executeCommand()
349 .newHandler(gestureState, cmd.createTime); in executeCommand()
384 cmd.mActiveCallbacks = mTaskAnimationManager.continueRecentsAnimation(gestureState); in executeCommand()
393 intent.putExtra(INTENT_EXTRA_LOG_TRACE_ID, gestureState.getGestureId()); in executeCommand()
395 gestureState, intent, interactionHandler); in executeCommand()
DLauncherSwipeHandlerV2.java69 TaskAnimationManager taskAnimationManager, GestureState gestureState, long touchTimeMs, in LauncherSwipeHandlerV2() argument
71 super(context, deviceState, taskAnimationManager, gestureState, touchTimeMs, in LauncherSwipeHandlerV2()
DFallbackSwipeHandler.java104 TaskAnimationManager taskAnimationManager, GestureState gestureState, long touchTimeMs, in FallbackSwipeHandler() argument
106 super(context, deviceState, taskAnimationManager, gestureState, touchTimeMs, in FallbackSwipeHandler()
DSwipeUpAnimationLogic.java88 GestureState gestureState) { in SwipeUpAnimationLogic() argument
91 mGestureState = gestureState; in SwipeUpAnimationLogic()
DAbsSwipeUpHandler.java352 TaskAnimationManager taskAnimationManager, GestureState gestureState, in AbsSwipeUpHandler() argument
355 super(context, deviceState, gestureState); in AbsSwipeUpHandler()
356 mContainerInterface = gestureState.getContainerInterface(); in AbsSwipeUpHandler()
2684 AbsSwipeUpHandler newHandler(GestureState gestureState, long touchTimeMs);
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaskAnimationManagerTest.java65 final GestureState gestureState = mock(GestureState.class); in startRecentsActivity_allowBackgroundLaunch() local
68 doReturn(activityInterface).when(gestureState).getContainerInterface(); in startRecentsActivity_allowBackgroundLaunch()
69 mTaskAnimationManager.startRecentsAnimation(gestureState, new Intent(), listener); in startRecentsActivity_allowBackgroundLaunch()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DInputProxyHandlerFactory.java39 GestureState gestureState) { in InputProxyHandlerFactory() argument
41 mGestureState = gestureState; in InputProxyHandlerFactory()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/inputconsumers/
DOverviewInputConsumer.java60 public OverviewInputConsumer(GestureState gestureState, T container, in OverviewInputConsumer() argument
65 mContainerInterface = gestureState.getContainerInterface(); in OverviewInputConsumer()
66 mGestureState = gestureState; in OverviewInputConsumer()
DScreenPinnedInputConsumer.java41 public ScreenPinnedInputConsumer(Context context, GestureState gestureState) { in ScreenPinnedInputConsumer() argument
47 RecentsViewContainer container = gestureState.getContainerInterface() in ScreenPinnedInputConsumer()
DOverviewWithoutFocusInputConsumer.java48 RecentsAnimationDeviceState deviceState, GestureState gestureState, in OverviewWithoutFocusInputConsumer() argument
51 mGestureState = gestureState; in OverviewWithoutFocusInputConsumer()
DAccessibilityInputConsumer.java60 GestureState gestureState, InputConsumer delegate, InputMonitorCompat inputMonitor) { in AccessibilityInputConsumer() argument
68 mGestureState = gestureState; in AccessibilityInputConsumer()
DProgressDelegateInputConsumer.java92 TaskAnimationManager taskAnimationManager, GestureState gestureState, in ProgressDelegateInputConsumer() argument
96 mGestureState = gestureState; in ProgressDelegateInputConsumer()
DNavHandleLongPressInputConsumer.java72 NavHandle navHandle, GestureState gestureState) { in NavHandleLongPressInputConsumer() argument
87 mGestureState = gestureState; in NavHandleLongPressInputConsumer()
DDeviceLockedInputConsumer.java112 TaskAnimationManager taskAnimationManager, GestureState gestureState, in DeviceLockedInputConsumer() argument
117 mGestureState = gestureState; in DeviceLockedInputConsumer()
DAssistantInputConsumer.java93 GestureState gestureState, in AssistantInputConsumer() argument
109 mContainerInterface = gestureState.getContainerInterface(); in AssistantInputConsumer()
DTaskbarUnstashInputConsumer.java99 OverviewCommandHelper overviewCommandHelper, GestureState gestureState) { in TaskbarUnstashInputConsumer() argument
125 mGestureState = gestureState; in TaskbarUnstashInputConsumer()
DOtherActivityInputConsumer.java125 TaskAnimationManager taskAnimationManager, GestureState gestureState, in OtherActivityInputConsumer() argument
133 mGestureState = gestureState; in OtherActivityInputConsumer()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DSwipeUpGestureTutorialController.java322 GestureState gestureState) { in ViewSwipeUpAnimation() argument
323 super(context, deviceState, gestureState); in ViewSwipeUpAnimation()