Home
last modified time | relevance | path

Searched refs:goingToEnd (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
H A DTaskViewTouchController.java341 final boolean goingToEnd; in onDragEnd()
351 goingToEnd = goingUp == mCurrentAnimationIsGoingUp; in onDragEnd()
353 goingToEnd = interpolatedProgress > SUCCESS_TRANSITION_PROGRESS; in onDragEnd()
356 velocity, goingToEnd ? (1 - progress) : progress); in onDragEnd()
357 if (blockedFling && !goingToEnd) { in onDragEnd()
367 mCurrentAnimation.startWithVelocity(mActivity, goingToEnd, in onDragEnd()
370 if (goingUp && goingToEnd && !mIsDismissHapticRunning) { in onDragEnd()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DAnimatorPlaybackController.java144 public void startWithVelocity(Context context, boolean goingToEnd, in startWithVelocity() argument
154 int springFlag = goingToEnd in startWithVelocity()
163 .setEndValue(goingToEnd ? 1 : 0) in startWithVelocity()
190 mAnimationPlayer.setFloatValues(nextFrameProgress, goingToEnd ? 1f : 0f); in startWithVelocity()