/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/transition/ |
D | SplitShadeInterpolator.kt | 33 override fun getNotificationScrimAlpha(fraction: Float): Float { in getNotificationScrimAlpha() method in com.android.systemui.shade.transition.SplitShadeInterpolator 41 return getNotificationScrimAlpha(fraction) in getNotificationContentAlpha() 52 return getNotificationScrimAlpha(fraction) in getQsAlpha()
|
D | LargeScreenShadeInterpolatorImpl.kt | 65 override fun getNotificationScrimAlpha(fraction: Float) = method 66 impl.getNotificationScrimAlpha(fraction)
|
D | LargeScreenShadeInterpolator.kt | 26 fun getNotificationScrimAlpha(fraction: Float): Float method
|
D | LargeScreenPortraitShadeInterpolator.kt | 31 override fun getNotificationScrimAlpha(fraction: Float): Float { in getNotificationScrimAlpha() method in com.android.systemui.shade.transition.LargeScreenPortraitShadeInterpolator
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/transition/ |
D | LargeScreenShadeInterpolatorImplTest.kt | 56 actual = { fraction -> impl.getNotificationScrimAlpha(fraction) }, in <lambda>() 57 expected = { fraction -> splitShadeInterpolator.getNotificationScrimAlpha(fraction) } in <lambda>() 65 actual = { fraction -> impl.getNotificationScrimAlpha(fraction) }, in <lambda>() 66 expected = { fraction -> portraitShadeInterpolator.getNotificationScrimAlpha(fraction) } in <lambda>()
|
D | LinearLargeScreenShadeInterpolator.kt | 21 override fun getNotificationScrimAlpha(fraction: Float) = fraction method in com.android.systemui.shade.transition.LinearLargeScreenShadeInterpolator
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | ShadeInterpolation.kt | 13 fun getNotificationScrimAlpha(fraction: Float): Float { in getNotificationScrimAlpha() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | NotificationShadeDepthController.kt | 197 ShadeInterpolation.getNotificationScrimAlpha( in <lambda>() 201 val qsExpandedRatio = ShadeInterpolation.getNotificationScrimAlpha(qsPanelExpansion) * in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | ScrimControllerTest.java | 1731 float expectedAlpha = ShadeInterpolation.getNotificationScrimAlpha(expansion); in expansionNotificationAlpha_shadeLocked_bouncerNotActive_usesShadeInterpolator() 1735 expectedAlpha = ShadeInterpolation.getNotificationScrimAlpha(expansion); in expansionNotificationAlpha_shadeLocked_bouncerNotActive_usesShadeInterpolator() 1754 float alpha = 1 - ShadeInterpolation.getNotificationScrimAlpha(expansion); in notificationAlpha_unnocclusionAnimating_bouncerNotActive_usesKeyguardNotifAlpha() 1786 float alpha = 1 - ShadeInterpolation.getNotificationScrimAlpha(expansion); in notificationAlpha_inKeyguardState_bouncerNotActive_usesInvertedShadeInterpolator() 1790 alpha = 1 - ShadeInterpolation.getNotificationScrimAlpha(expansion); in notificationAlpha_inKeyguardState_bouncerNotActive_usesInvertedShadeInterpolator() 1794 alpha = 1 - ShadeInterpolation.getNotificationScrimAlpha(expansion); in notificationAlpha_inKeyguardState_bouncerNotActive_usesInvertedShadeInterpolator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | ScrimController.java | 886 expansionFraction = ShadeInterpolation.getNotificationScrimAlpha(expansionFraction); in setQsPosition() 1014 mLargeScreenShadeInterpolator.getNotificationScrimAlpha( in applyState() 1321 return ShadeInterpolation.getNotificationScrimAlpha(mPanelExpansionFraction); in getInterpolatedFraction()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationShadeDepthControllerTest.kt | 242 .setNotificationShadeZoom(eq(ShadeInterpolation.getNotificationScrimAlpha(0.25f))) in <lambda>()
|