/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/ |
H A D | QuickstepAtomicAnimationFactory.java | 26 import static com.android.launcher3.anim.Interpolators.ACCEL; 27 import static com.android.launcher3.anim.Interpolators.ACCEL_DEACCEL; 28 import static com.android.launcher3.anim.Interpolators.DEACCEL; 29 import static com.android.launcher3.anim.Interpolators.DEACCEL_1_7; 30 import static com.android.launcher3.anim.Interpolators.DEACCEL_3; 32 import static com.android.launcher3.anim.Interpolators.FINAL_FRAME; 33 import static com.android.launcher3.anim.Interpolators.INSTANT; 34 import static com.android.launcher3.anim.Interpolators.LINEAR; 35 import static com.android.launcher3.anim.Interpolators.OVERSHOOT_1_2; 36 import static com.android.launcher3.anim.Interpolators.clampToProgress; [all …]
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/ |
H A D | TestValues.kt | 18 val TEST_INTERPOLATORS = LaunchAnimator.Interpolators( 19 positionInterpolator = Interpolators.STANDARD, 20 positionXInterpolator = Interpolators.STANDARD, 21 contentBeforeFadeOutInterpolator = Interpolators.STANDARD, 22 contentAfterFadeInInterpolator = Interpolators.STANDARD
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/ |
H A D | WirelessChargingLayout.java | 36 import com.android.systemui.animation.Interpolators; 111 textOpacityAnimator.setInterpolator(Interpolators.LINEAR); in init() 120 textFadeAnimator.setInterpolator(Interpolators.LINEAR); in init() 130 scrimFadeInAnimator.setInterpolator(Interpolators.LINEAR); in init() 134 scrimFadeOutAnimator.setInterpolator(Interpolators.LINEAR); in init() 177 textOpacityAnimatorTransmitting.setInterpolator(Interpolators.LINEAR); in init() 187 textFadeAnimatorTransmitting.setInterpolator(Interpolators.LINEAR); in init() 206 textOpacityAnimatorIcon.setInterpolator(Interpolators.LINEAR); in init() 216 textFadeAnimatorIcon.setInterpolator(Interpolators.LINEAR); in init()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/ |
H A D | PortraitStatesTouchController.java | 24 import static com.android.launcher3.anim.Interpolators.ACCEL; 25 import static com.android.launcher3.anim.Interpolators.DEACCEL; 35 import com.android.launcher3.anim.Interpolators; 129 builder.setInterpolator(ANIM_ALL_APPS_FADE, Interpolators.clampToProgress(ACCEL, in getNormalToAllAppsAnimation() 132 builder.setInterpolator(ANIM_SCRIM_FADE, Interpolators.clampToProgress(ACCEL, in getNormalToAllAppsAnimation() 140 builder.setInterpolator(ANIM_ALL_APPS_FADE, Interpolators.clampToProgress(DEACCEL, in getAllAppsToNormalAnimation() 143 builder.setInterpolator(ANIM_SCRIM_FADE, Interpolators.clampToProgress(DEACCEL, in getAllAppsToNormalAnimation() 189 .createSwipeDownToTaskAppAnimation(maxAccuracy, Interpolators.LINEAR) in initCurrentAnimation()
|
H A D | QuickSwitchTouchController.java | 20 import static com.android.launcher3.anim.Interpolators.ACCEL_2; 21 import static com.android.launcher3.anim.Interpolators.DEACCEL_2; 22 import static com.android.launcher3.anim.Interpolators.INSTANT; 23 import static com.android.launcher3.anim.Interpolators.LINEAR;
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | CrossFadeHelper.java | 22 import com.android.systemui.animation.Interpolators; 45 .setInterpolator(Interpolators.ALPHA_OUT) in fadeOut() 88 float alpha = Interpolators.ALPHA_OUT.getInterpolation(1.0f - fadeOutAmount); in fadeOut() 126 .setInterpolator(Interpolators.ALPHA_IN) in fadeIn() 156 float alpha = Interpolators.ALPHA_IN.getInterpolation(fadeInAmount); in fadeIn()
|
H A D | KeyguardAffordanceView.java | 42 import com.android.systemui.animation.Interpolators; 285 animator.setInterpolator(Interpolators.ALPHA_IN); in startRtAlphaFadeIn() 306 animator.setInterpolator(Interpolators.ALPHA_OUT); in startRtCircleFadeOut() 376 ? Interpolators.FAST_OUT_LINEAR_IN in setCircleRadius() 377 : Interpolators.LINEAR_OUT_SLOW_IN; in setCircleRadius() 462 ? Interpolators.FAST_OUT_LINEAR_IN in setImageScale() 463 : Interpolators.LINEAR_OUT_SLOW_IN; in setImageScale() 515 ? Interpolators.FAST_OUT_LINEAR_IN in setImageAlpha() 516 : Interpolators.LINEAR_OUT_SLOW_IN; in setImageAlpha()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardVisibilityHelper.java | 24 import com.android.systemui.animation.Interpolators; 83 .setInterpolator(Interpolators.ALPHA_OUT) in setViewVisibility() 100 .setInterpolator(Interpolators.ALPHA_IN) in setViewVisibility() 107 .setInterpolator(Interpolators.FAST_OUT_LINEAR_IN) in setViewVisibility() 138 .setInterpolator(Interpolators.FAST_OUT_SLOW_IN) in setViewVisibility()
|
H A D | NumPadAnimator.java | 30 import com.android.systemui.animation.Interpolators; 57 mExpandAnimator.setInterpolator(Interpolators.LINEAR); in NumPadAnimator() 68 mContractAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); in NumPadAnimator()
|
H A D | KeyguardSliceView.java | 51 import com.android.systemui.animation.Interpolators; 97 Interpolators.FAST_OUT_SLOW_IN); in KeyguardSliceView() 98 mLayoutTransition.setInterpolator(LayoutTransition.DISAPPEARING, Interpolators.ALPHA_OUT); in KeyguardSliceView() 338 Interpolators.ACCELERATE_DECELERATE); in onFinishInflate() 340 Interpolators.ACCELERATE_DECELERATE); in onFinishInflate() 348 mLayoutTransition.setInterpolator(LayoutTransition.APPEARING, Interpolators.ALPHA_IN); in onFinishInflate() 352 Interpolators.ALPHA_OUT); in onFinishInflate()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | ControlsAnimations.kt | 35 import com.android.systemui.animation.Interpolators 104 interpolator = Interpolators.DECELERATE_QUINT 110 interpolator = Interpolators.DECELERATE_QUINT 130 interpolator = Interpolators.ACCELERATE 136 interpolator = Interpolators.ACCELERATE
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
H A D | AllAppsSwipeController.java | 20 import static com.android.launcher3.anim.Interpolators.LINEAR; 30 import com.android.launcher3.anim.Interpolators; 41 Interpolators.clampToProgress(LINEAR, 0, ALLAPPS_STAGGERED_FADE_THRESHOLD); 43 Interpolators.clampToProgress(LINEAR, ALLAPPS_STAGGERED_FADE_THRESHOLD, 1f);
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/views/ |
H A D | AbstractSlideInView.java | 20 import static com.android.launcher3.anim.Interpolators.scrollInterpolatorForVelocity; 36 import com.android.launcher3.anim.Interpolators; 86 mScrollInterpolator = Interpolators.SCROLL_CUBIC; in AbstractSlideInView() 181 .setInterpolator(Interpolators.DEACCEL); in onDragEnd() 212 .setInterpolator(Interpolators.ACCEL); in handleClose()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/ |
H A D | BaseRecentsViewStateController.java | 19 import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE_IN_OUT; 20 import static com.android.launcher3.anim.Interpolators.FINAL_FRAME; 21 import static com.android.launcher3.anim.Interpolators.INSTANT; 22 import static com.android.launcher3.anim.Interpolators.LINEAR;
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/ |
H A D | WorkspaceRevealAnim.java | 36 import com.android.launcher3.anim.Interpolators; 89 mAnimators.setInterpolator(Interpolators.DECELERATED_EASE); in WorkspaceRevealAnim() 95 scale.setInterpolator(Interpolators.DECELERATED_EASE); in addRevealAnimatorsForView() 100 alpha.setInterpolator(Interpolators.DECELERATED_EASE); in addRevealAnimatorsForView()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | KeyguardUserSwitcherListView.java | 28 import com.android.systemui.animation.Interpolators; 48 Interpolators.FAST_OUT_SLOW_IN); in KeyguardUserSwitcherListView() 53 Interpolators.FAST_OUT_SLOW_IN_REVERSE); in KeyguardUserSwitcherListView()
|
H A D | KeyguardUserDetailItemView.java | 29 import com.android.systemui.animation.Interpolators; 102 .setInterpolator(Interpolators.ALPHA_IN); in updateVisibilities() 113 .setInterpolator(Interpolators.ALPHA_OUT) in updateVisibilities()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthRippleView.kt | 31 import com.android.systemui.animation.Interpolators 137 interpolator = Interpolators.LINEAR 177 interpolator = Interpolators.LINEAR 190 interpolator = Interpolators.LINEAR_OUT_SLOW_IN 231 interpolator = Interpolators.LINEAR_OUT_SLOW_IN
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | TapAgainView.java | 32 import com.android.wm.shell.animation.Interpolators; 66 fadeIn.setInterpolator(Interpolators.LINEAR_OUT_SLOW_IN); in animateIn() 91 fadeOut.setInterpolator(Interpolators.FAST_OUT_LINEAR_IN); in animateOut()
|
H A D | KeyguardClockPositionAlgorithm.java | 28 import com.android.systemui.animation.Interpolators; 250 float shadeExpansion = Interpolators.FAST_OUT_LINEAR_IN.getInterpolation(panelExpansion); in getClockY() 294 float shadeExpansion = Interpolators.FAST_OUT_LINEAR_IN.getInterpolation(panelExpansion); in getUserSwitcherY() 313 alphaKeyguard = Interpolators.ACCELERATE.getInterpolation(alphaKeyguard); in getClockAlpha()
|
/aosp12/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/ |
H A D | SwipeButtonView.java | 37 import com.android.incallui.answer.impl.utils.Interpolators; 294 ? Interpolators.FAST_OUT_LINEAR_IN in setCircleRadius() 295 : Interpolators.LINEAR_OUT_SLOW_IN; in setCircleRadius() 388 ? Interpolators.FAST_OUT_LINEAR_IN in setImageScale() 389 : Interpolators.LINEAR_OUT_SLOW_IN; in setImageScale() 459 alpha == 0.0f ? Interpolators.FAST_OUT_LINEAR_IN : Interpolators.LINEAR_OUT_SLOW_IN; in setImageAlpha()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | ImageTransformState.java | 25 import com.android.systemui.animation.Interpolators; 71 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in appear() 90 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in disappear()
|
H A D | NotificationWakeUpCoordinator.kt | 21 import com.android.systemui.animation.Interpolators 58 private var mVisibilityInterpolator = Interpolators.FAST_OUT_SLOW_IN_REVERSE 346 Interpolators.TOUCH_RESPONSE 348 Interpolators.FAST_OUT_SLOW_IN_REVERSE 352 visibilityAnimator.setInterpolator(Interpolators.LINEAR)
|
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/animation/ |
H A D | FlingAnimationUtils.java | 184 velocityInterpolator, slowInInterpolator, Interpolators.LINEAR_OUT_SLOW_IN); in getProperties() 190 mAnimatorProperties.mInterpolator = Interpolators.FAST_OUT_SLOW_IN; in getProperties() 199 return Interpolators.LINEAR_OUT_SLOW_IN; in getInterpolator() 281 velocityInterpolator, mLinearOutFasterIn, Interpolators.LINEAR_OUT_SLOW_IN); in getDismissingProperties() 287 mAnimatorProperties.mInterpolator = Interpolators.FAST_OUT_LINEAR_IN; in getDismissingProperties()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ |
H A D | TaskbarEduController.java | 19 import static com.android.launcher3.anim.Interpolators.ACCEL_2; 20 import static com.android.launcher3.anim.Interpolators.ACCEL_DEACCEL; 21 import static com.android.launcher3.anim.Interpolators.DEACCEL; 22 import static com.android.launcher3.anim.Interpolators.FAST_OUT_SLOW_IN;
|