Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DGhostedViewLaunchAnimatorController.kt80 topCornerRadius: Float, in getBackground()
85 backgroundDrawable?.setBackgroundRadius(topCornerRadius, bottomCornerRadius) in getBackground()
113 topCornerRadius = getCurrentTopCornerRadius(), in createAnimatorState()
181 setBackgroundCornerRadius(it, state.topCornerRadius, state.bottomCornerRadius) in onLaunchAnimationProgress()
281 fun setBackgroundRadius(topCornerRadius: Float, bottomCornerRadius: Float) { in setBackgroundRadius()
282 updateRadii(cornerRadii, topCornerRadius, bottomCornerRadius) in setBackgroundRadius()
288 topCornerRadius: Float, in updateRadii()
291 radii[0] = topCornerRadius in updateRadii()
292 radii[1] = topCornerRadius in updateRadii()
293 radii[2] = topCornerRadius in updateRadii()
[all …]
DActivityLaunchAnimator.kt319 var topCornerRadius: Float = 0f, in <lambda>() variable in com.android.systemui.animation.State
454 val startTopCornerRadius = state.topCornerRadius in <lambda>()
538 state.topCornerRadius = MathUtils.lerp(startTopCornerRadius, endRadius, progress) in <lambda>()
608 val cornerRadius = maxOf(state.topCornerRadius, state.bottomCornerRadius) / scale in <lambda>()
630 cornerRadii[0] = state.topCornerRadius in <lambda>()
631 cornerRadii[1] = state.topCornerRadius in <lambda>()
632 cornerRadii[2] = state.topCornerRadius in <lambda>()
633 cornerRadii[3] = state.topCornerRadius in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DExpandAnimationParameters.kt16 topCornerRadius: Float = 0f,
18 ) : ActivityLaunchAnimator.State(top, bottom, left, right, topCornerRadius, bottomCornerRadius) {
21 top = 0, bottom = 0, left = 0, right = 0, topCornerRadius = 0f, bottomCornerRadius = 0f
DNotificationLaunchAnimatorController.kt65 val topCornerRadius = if (roundedTopClipping > 0) { in createAnimatorState() constant
79 topCornerRadius = topCornerRadius, in createAnimatorState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DActivityLaunchAnimatorTest.kt216 topCornerRadius = 10f, in createAnimatorState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DMediaControlPanel.java501 protected void setBackgroundCornerRadius(Drawable background, float topCornerRadius, in buildLaunchAnimatorController() argument
504 float radius = Math.min(topCornerRadius, bottomCornerRadius); in buildLaunchAnimatorController()