Home
last modified time | relevance | path

Searched refs:alphaProgress (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DLockscreenShadeKeyguardTransitionController.kt48 private var alphaProgress = 0f variable
72 alphaProgress = MathUtils.saturate(dragDownAmount / alphaTransitionDistance) in onDragDownAmountChanged()
73 alpha = 1f - alphaProgress in onDragDownAmountChanged()
110 it.println("alphaProgress: $alphaProgress") in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
DTransitionLayoutController.kt129 val alphaProgress = MathUtils.map( in getGoneState() constant
131 alpha = MathUtils.constrain(alphaProgress, 0.0f, 1.0f) in getGoneState()
154 var alphaProgress = progress in getInterpolatedState() variable
175 alphaProgress = MathUtils.map( in getInterpolatedState()
192 alphaProgress = MathUtils.map( in getInterpolatedState()
228 alphaProgress = MathUtils.map( in getInterpolatedState()
244 alphaProgress = MathUtils.map( in getInterpolatedState()
288 alpha = MathUtils.lerp(widgetStart.alpha, widgetEnd.alpha, alphaProgress) in getInterpolatedState()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashScreenExitAnimationUtils.java326 final float alphaProgress = Interpolators.ALPHA_OUT.getInterpolation(linearProgress); in onAnimationProgress() local
332 mVanishPaint.setAlpha(Math.round(0xFF * alphaProgress)); in onAnimationProgress()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSImpl.java634 float alphaProgress = calculateAlphaProgress(panelExpansionFraction); in setQsExpansion() local
635 setAlphaAnimationProgress(alphaProgress); in setQsExpansion()
676 onKeyguardAndExpanded ? 1 : mInSplitShade ? alphaProgress : expansion; in setQsExpansion()