Home
last modified time | relevance | path

Searched refs:progressX (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/back/
DBackAnimationSpecTest.kt14 private data class BackInput(val progressX: Float, val progressY: Float, val edge: Int) constant in com.android.systemui.animation.back.BackInput
36 backInput = BackInput(progressX = 0f, progressY = 0f, edge = BackEvent.EDGE_LEFT), in sysUi_floatingSystemSurfaces_animationValues()
41 backInput = BackInput(progressX = 1f, progressY = 0f, edge = BackEvent.EDGE_LEFT), in sysUi_floatingSystemSurfaces_animationValues()
46 backInput = BackInput(progressX = 1f, progressY = 0f, edge = BackEvent.EDGE_RIGHT), in sysUi_floatingSystemSurfaces_animationValues()
51 backInput = BackInput(progressX = 1f, progressY = 1f, edge = BackEvent.EDGE_LEFT), in sysUi_floatingSystemSurfaces_animationValues()
56 backInput = BackInput(progressX = 0f, progressY = 1f, edge = BackEvent.EDGE_LEFT), in sysUi_floatingSystemSurfaces_animationValues()
61 backInput = BackInput(progressX = 0f, progressY = -1f, edge = BackEvent.EDGE_LEFT), in sysUi_floatingSystemSurfaces_animationValues()
74 backInput = BackInput(progressX = 0f, progressY = 0f, edge = BackEvent.EDGE_LEFT), in sysUi_bottomsheet_animationValues()
85 backInput = BackInput(progressX = 1f, progressY = 0f, edge = BackEvent.EDGE_LEFT), in sysUi_bottomsheet_animationValues()
96 backInput = BackInput(progressX = 1f, progressY = 0f, edge = BackEvent.EDGE_RIGHT), in sysUi_bottomsheet_animationValues()
[all …]
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/back/
DBackAnimationSpec.kt62 val progressX = backEvent.progress in createFloatingSurfaceAnimationSpec() constant
64 val ratioTranslateX = translateXEasing.getInterpolation(progressX) in createFloatingSurfaceAnimationSpec()
66 val ratioScale = scaleEasing.getInterpolation(progressX) in createFloatingSurfaceAnimationSpec()
DBottomsheetBackAnimationSpec.kt35 val progressX = backEvent.progress in <lambda>() constant
36 val ratioScale = scaleEasing.getInterpolation(progressX) in <lambda>()