Home
last modified time | relevance | path

Searched refs:blurRadiusOfRatio (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShadeDepthController.kt113 brightnessMirrorSpring.animateTo(if (value) blurUtils.blurRadiusOfRatio(1f).toInt()
195 val expansionRadius = blurUtils.blurRadiusOfRatio(
202 combinedBlur = max(combinedBlur, blurUtils.blurRadiusOfRatio(qsExpandedRatio))
203 combinedBlur = max(combinedBlur, blurUtils.blurRadiusOfRatio(transitionToFullShadeProgress))
272 blurUtils.blurRadiusOfRatio(animation.animatedValue as Float)
307 wakeAndUnlockBlurRadius = blurUtils.blurRadiusOfRatio(eased)
441 shadeAnimation.animateTo(blurUtils.blurRadiusOfRatio(targetBlurNormalized).toInt())
H A DBlurUtils.kt57 fun blurRadiusOfRatio(ratio: Float): Float { regex
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/
H A DDreamOverlayContainerViewControllerTest.java203 when(mBlurUtils.blurRadiusOfRatio(anyFloat())).thenReturn(blurRadius); in testBouncerAnimation_updateBlur()
212 verify(mBlurUtils).blurRadiusOfRatio(1 - scaledFraction); in testBouncerAnimation_updateBlur()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
H A DShutdownUi.java69 (int) mBlurUtils.blurRadiusOfRatio(1), backgroundAlpha == 255); in showShutdownUi()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationShadeDepthControllerTest.kt96 `when`(blurUtils.blurRadiusOfRatio(anyFloat())).then { answer ->
304 `when`(blurUtils.blurRadiusOfRatio(anyFloat())).then { answer ->
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
H A DDreamOverlayContainerViewController.java283 (int) mBlurUtils.blurRadiusOfRatio( in updateTransitionState()