Home
last modified time | relevance | path

Searched refs:Interpolators (Results 1 – 25 of 166) sorted by relevance

1234567

/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/animation/
H A DFakeLaunchAnimator.kt17 import com.android.app.animation.Interpolators
41 LaunchAnimator.Interpolators(
42 positionInterpolator = Interpolators.STANDARD,
43 positionXInterpolator = Interpolators.STANDARD,
44 contentBeforeFadeOutInterpolator = Interpolators.STANDARD,
45 contentAfterFadeInInterpolator = Interpolators.STANDARD
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/back/
H A DBackAnimationSpec.kt22 import com.android.app.animation.Interpolators
44 translateXEasing: Interpolator = Interpolators.STANDARD_DECELERATE,
45 translateYEasing: Interpolator = Interpolators.LINEAR,
46 scaleEasing: Interpolator = Interpolators.STANDARD_DECELERATE,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCrossFadeHelper.java21 import com.android.app.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 DKeyguardAffordanceView.java41 import com.android.app.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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DNumPadAnimator.java40 import com.android.app.animation.Interpolators;
148 mExpandAnimator.setInterpolator(Interpolators.LINEAR); in createAnimators()
155 expandBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR); in createAnimators()
162 expandTextColorAnimator.setInterpolator(Interpolators.LINEAR); in createAnimators()
180 mContractAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); in createAnimators()
185 contractBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR); in createAnimators()
194 contractTextColorAnimator.setInterpolator(Interpolators.LINEAR); in createAnimators()
H A DKeyguardSecurityViewTransition.kt29 import com.android.app.animation.Interpolators
92 val fadeOutInterpolator = Interpolators.FAST_OUT_LINEAR_IN
93 val fadeInInterpolator = Interpolators.LINEAR_OUT_SLOW_IN
96 runningSecurityShiftAnimator.interpolator = Interpolators.LINEAR
H A DBouncerKeyguardMessageArea.kt27 import com.android.app.animation.Interpolators
103 interpolator = Interpolators.STANDARD_ACCELERATE
116 interpolator = Interpolators.STANDARD_DECELERATE
H A DKeyguardVisibilityHelper.java25 import com.android.app.animation.Interpolators;
100 .setCustomInterpolator(View.ALPHA, Interpolators.ALPHA_OUT) in setViewVisibility()
122 .setCustomInterpolator(View.ALPHA, Interpolators.ALPHA_IN) in setViewVisibility()
141 .setCustomInterpolator(View.ALPHA, Interpolators.FAST_OUT_LINEAR_IN) in setViewVisibility()
H A DKeyguardSliceView.java47 import com.android.app.animation.Interpolators;
96 Interpolators.FAST_OUT_SLOW_IN); in KeyguardSliceView()
97 mLayoutTransition.setInterpolator(LayoutTransition.DISAPPEARING, Interpolators.ALPHA_OUT); in KeyguardSliceView()
337 Interpolators.ACCELERATE_DECELERATE); in onFinishInflate()
339 Interpolators.ACCELERATE_DECELERATE); in onFinishInflate()
347 mLayoutTransition.setInterpolator(LayoutTransition.APPEARING, Interpolators.ALPHA_IN); in onFinishInflate()
351 Interpolators.ALPHA_OUT); in onFinishInflate()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DFaceScanningOverlay.kt34 import com.android.app.animation.Interpolators
142 if (showScanningAnim) Interpolators.STANDARD_ACCELERATE
143 else if (faceAuthSucceeded) Interpolators.STANDARD
144 else Interpolators.STANDARD_DECELERATE
245 Interpolators.STANDARD_DECELERATE
260 Interpolators.STANDARD
288 interpolator = Interpolators.LINEAR
324 interpolator = Interpolators.STANDARD_DECELERATE
355 interpolator = Interpolators.STANDARD
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
H A DWirelessChargingLayout.java33 import com.android.app.animation.Interpolators;
115 textOpacityAnimator.setInterpolator(Interpolators.LINEAR); in init()
124 textFadeAnimator.setInterpolator(Interpolators.LINEAR); in init()
137 scrimFadeInAnimator.setInterpolator(Interpolators.LINEAR); in init()
141 scrimFadeOutAnimator.setInterpolator(Interpolators.LINEAR); in init()
217 textOpacityAnimatorTransmitting.setInterpolator(Interpolators.LINEAR); in init()
227 textFadeAnimatorTransmitting.setInterpolator(Interpolators.LINEAR); in init()
246 textOpacityAnimatorIcon.setInterpolator(Interpolators.LINEAR); in init()
256 textFadeAnimatorIcon.setInterpolator(Interpolators.LINEAR); in init()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
H A DControlsAnimations.kt35 import com.android.app.animation.Interpolators
113 interpolator = Interpolators.DECELERATE_QUINT
119 interpolator = Interpolators.DECELERATE_QUINT
139 interpolator = Interpolators.ACCELERATE
145 interpolator = Interpolators.ACCELERATE
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/
H A DChipbarAnimator.kt21 import com.android.app.animation.Interpolators
46 Interpolators.EMPHASIZED_DECELERATE,
66 Interpolators.EMPHASIZED_ACCELERATE,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
H A DDreamOverlayAnimationsController.kt28 import com.android.app.animation.Interpolators
169 interpolator = Interpolators.EMPHASIZED_DECELERATE
175 interpolator = Interpolators.LINEAR
181 interpolator = Interpolators.EMPHASIZED_DECELERATE
219 Interpolators.EMPHASIZED,
281 interpolator: Interpolator = Interpolators.LINEAR
304 interpolator: Interpolator = Interpolators.LINEAR
331 interpolator: Interpolator = Interpolators.LINEAR
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherListView.java24 import com.android.app.animation.Interpolators;
48 Interpolators.FAST_OUT_SLOW_IN); in KeyguardUserSwitcherListView()
53 Interpolators.FAST_OUT_SLOW_IN_REVERSE); in KeyguardUserSwitcherListView()
H A DKeyguardUserDetailItemView.java27 import com.android.app.animation.Interpolators;
102 .setInterpolator(Interpolators.ALPHA_IN); in updateVisibilities()
113 .setInterpolator(Interpolators.ALPHA_OUT) in updateVisibilities()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/clocks/
H A DAnimatableClockViewTest.kt22 import com.android.app.animation.Interpolators
69 interpolator = Interpolators.EMPHASIZED_DECELERATE,
103 interpolator = Interpolators.EMPHASIZED_DECELERATE,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTapAgainView.java32 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 DKeyguardClockPositionAlgorithm.java26 import com.android.app.animation.Interpolators;
271 float shadeExpansion = Interpolators.FAST_OUT_LINEAR_IN.getInterpolation(panelExpansion); in getClockY()
317 float shadeExpansion = Interpolators.FAST_OUT_LINEAR_IN.getInterpolation(panelExpansion); in getUserSwitcherY()
339 alphaKeyguard = Interpolators.ACCELERATE.getInterpolation(alphaKeyguard); in getClockAlpha()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DImageTransformState.java24 import com.android.app.animation.Interpolators;
73 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in appear()
92 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation( in disappear()
H A DLaunchAnimationParameters.kt6 import com.android.app.animation.Interpolators
55 Interpolators.FAST_OUT_SLOW_IN.getInterpolation(linearProgress)).toInt()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsAnimationViewController.kt22 import com.android.app.animation.Interpolators
103 interpolator = if (hideAffordance) Interpolators.LINEAR else Interpolators.ALPHA_IN
H A DAuthRippleView.kt31 import com.android.app.animation.Interpolators
136 interpolator = Interpolators.LINEAR
175 interpolator = Interpolators.LINEAR
212 interpolator = Interpolators.LINEAR
225 interpolator = Interpolators.LINEAR_OUT_SLOW_IN
/aosp14/frameworks/base/libs/dream/lowlight/tests/src/com/android/dream/lowlight/util/
H A DTruncatedInterpolatorTest.kt20 import com.android.app.animation.Interpolators
30 val originalInterpolator = Interpolators.EMPHASIZED
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
H A DFromOccludedTransitionInteractor.kt20 import com.android.app.animation.Interpolators
161 KeyguardState.ALTERNATE_BOUNCER -> Interpolators.FAST_OUT_SLOW_IN
162 else -> Interpolators.LINEAR

1234567