Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DTransitionDslTest.kt27 import com.android.compose.animation.scene.transformation.TransformationRange
117 TransformationRange(start = 0.1f, end = 0.8f), in fractionRange()
118 TransformationRange(start = 0.2f, end = TransformationRange.BoundUnspecified), in fractionRange()
119 TransformationRange(start = TransformationRange.BoundUnspecified, end = 0.9f), in fractionRange()
140 TransformationRange(start = 100 / 500f, end = 300 / 500f), in timestampRange()
141 TransformationRange(start = 200 / 500f, end = TransformationRange.BoundUnspecified), in timestampRange()
142 TransformationRange(start = TransformationRange.BoundUnspecified, end = 400 / 500f), in timestampRange()
163 TransformationRange(start = 1f - 0.8f, end = 1f - 0.1f), in reversed()
164 TransformationRange(start = 1f - 300 / 500f, end = 1f - 100 / 500f), in reversed()
189 TransformationRange(start = 1f - 0.8f, end = 1f - 0.1f), in defaultReversed()
[all …]
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/transformation/
DTransformation.kt40 val range: TransformationRange?
79 override val range: TransformationRange,
90 data class TransformationRange( class
106 fun reversed() = TransformationRange(start = reverseBound(end), end = reverseBound(start)) in reversed()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DTransitionDslImpl.kt40 import com.android.compose.animation.scene.transformation.TransformationRange
122 private var range: TransformationRange? = null
131 range = TransformationRange(start, end) in fractionRange()