Home
last modified time | relevance | path

Searched refs:animatedValue (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/libs/hwui/
DPropertyValuesHolder.cpp88 float animatedValue = calculateAnimatedValue(fraction); in setFraction() local
89 mGroup->mutateProperties()->setPropertyValue(mPropertyId, animatedValue); in setFraction()
93 SkColor animatedValue = calculateAnimatedValue(fraction); in setFraction() local
94 mFullPath->mutateProperties()->setColorPropertyValue(mPropertyId, animatedValue); in setFraction()
98 float animatedValue = calculateAnimatedValue(fraction); in setFraction() local
99 mFullPath->mutateProperties()->setPropertyValue(mPropertyId, animatedValue); in setFraction()
108 float animatedValue = calculateAnimatedValue(fraction); in setFraction() local
109 mTree->mutateProperties()->setRootAlpha(animatedValue); in setFraction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthRippleView.kt79 rippleShader.progress = animator.animatedValue as Float in <lambda>()
82 lightReveal?.revealAmount = animator.animatedValue as Float in <lambda>()
92 lightReveal?.revealAmount = animator.animatedValue as Float in <lambda>()
101 animator.animatedValue as Int in <lambda>()
113 animator.animatedValue as Int in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardUnlockAnimationController.kt159 surfaceBehindAlpha = valueAnimator.animatedValue as Float in <lambda>()
176 surfaceBehindAlpha = valueAnimator.animatedValue as Float in <lambda>()
177 setSurfaceBehindAppearAmount(valueAnimator.animatedValue as Float) in <lambda>()
DFaceAuthScreenBrightnessController.kt109 whiteOverlay.alpha = it.animatedValue as Float in <lambda>()
128 val progress = it.animatedValue as Float in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DLightSourceDrawable.kt98 rippleData.alpha = it.animatedValue as Float in <lambda>()
210 rippleData.alpha = it.animatedValue as Float in illuminate()
217 rippleData.progress = it.animatedValue as Float in illuminate()
DIlluminationDrawable.kt181 val progress = it.animatedValue as Float in animateBackground()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/charging/
DChargingRippleView.kt80 val progress = animator.animatedValue as Float in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DTextAnimator.kt66 textInterpolator.progress = it.animatedValue as Float in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DSystemEventChipAnimationController.kt109 val amt = animator.animatedValue as Float in onChipAnimationUpdate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DViewGroupFadeHelper.kt65 val newAlpha = animation.animatedValue as Float in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DUnlockedScreenOffAnimationController.kt69 addUpdateListener { lightRevealScrim.revealAmount = it.animatedValue as Float } in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DChannelEditorListView.kt196 setBackgroundColor(animator.animatedValue as Int) in playHighlight()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DLockscreenShadeTransitionController.kt331 dragDownAmount = animation.animatedValue as Float in <lambda>()
518 setPulseHeight(animation.animatedValue as Float) in <lambda>()
DNotificationShadeDepthController.kt245 blurUtils.blurRadiusOfRatio(animation.animatedValue as Float) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialog.java487 float animatedValue = animation.getAnimatedFraction(); in showDialog() local
488 int alpha = (int) (animatedValue * mScrimAlpha * 255); in showDialog()
DGlobalActionsDialogLite.java2395 float animatedValue = animation.getAnimatedFraction();
2396 int alpha = (int) (animatedValue * mScrimAlpha * 255);
2424 float animatedValue = 1f - animation.getAnimatedFraction();
2425 int alpha = (int) (animatedValue * mScrimAlpha * 255);
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
DToggleRangeBehavior.kt244 cvh.clipLayer.level = it.animatedValue as Int in <lambda>()
DControlViewHolder.kt367 val updatedAlpha = it.animatedValue as Int in startBackgroundAnimation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleStackView.java906 final float animatedValue = (float) animation.getAnimatedValue(); in BubbleStackView()
910 final float scaleValue = Math.max(animatedValue, sizePercent); in BubbleStackView()
915 mViewBeingDismissed.setAlpha(Math.max(animatedValue, 0.7f)); in BubbleStackView()