Home
last modified time | relevance | path

Searched defs:easing (Results 1 – 10 of 10) sorted by relevance

/compose/animation/animation-core/src/commonTest/kotlin/androidx/compose/animation/core/
DEasingUnitTest.kt30 val easing = FastOutSlowInEasing in cubicBezierStartsAt0() constant
36 val easing = FastOutLinearInEasing in cubicBezierEndsAt1() constant
42 val easing = CubicBezierEasing(0f, 0f, 0.15f, 1f) in cubicBezierDoesntExceed1() constant
48 val easing = CubicBezierEasing(0.34f, 1.56f, 0.64f, 1.0f) in cubicBezierDoesExceed1() constant
DKeyframeAnimationTest.kt63 val easing = FastOutSlowInEasing in withEasingOnFullDuration() constant
77 val easing = FastOutSlowInEasing in easingOnTheSecondPart() constant
104 val easing = FastOutLinearInEasing in testMultiDimensKeyframesWithEasing() constant
/compose/animation/animation-core/src/androidInstrumentedTest/kotlin/androidx/compose/animation/core/
DPathEasingTest.kt40 val easing = PathEasing(path) in pathEasing_Emphasized_BoundsCheck() constant
76 val easing = PathEasing(path) in pathEasing_CompareToCubicEasing() constant
96 val easing = PathEasing(path) in pathEasing_NonContinuousPath() constant
123 val easing = PathEasing(path) in pathEasing_Overlapping_Curves() constant
133 val easing = PathEasing(path) in pathEasing_QuadTo() constant
154 val easing = PathEasing(path) in pathEasing_QuadTo_OneToZero() constant
DEasingTest.kt46 fun easing() { in easing() method
89 val easing = CubicBezierEasing(cubic[0], cubic[1], cubic[2], cubic[3]) in easing() constant
/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/
DAnimationSpec.kt100 public val easing: Easing = FastOutSlowInEasing constant in androidx.compose.animation.core.TweenSpec
209 public val easing: Easing = FastOutSlowInEasing // Same default as tween() constant in androidx.compose.animation.core.ArcAnimationSpec
521 public sealed class KeyframeBaseEntity<T>(internal val value: T, internal var easing: Easing) { variable in androidx.compose.animation.core.KeyframeBaseEntity
DVectorizedMonoSplineKeyframesSpec.kt173 val easing = getEasing(index) in <lambda>() constant
DVectorizedAnimationSpec.kt481 val easing = keyframes[timeMin]?.easing ?: defaultEasing in getEasedTimeFromIndex() constant
504 val easing: Easing, constant in androidx.compose.animation.core.VectorizedKeyframeSpecElementInfo
915 public val easing: Easing = FastOutSlowInEasing constant in VectorizedTweenSpec
DFloatAnimationSpec.kt204 private val easing: Easing = FastOutSlowInEasing constant in androidx.compose.animation.core.FloatTweenSpec
/compose/animation/animation/src/androidInstrumentedTest/kotlin/androidx/compose/animation/
DAnimatedVisibilityTest.kt328 val easing = FastOutLinearInEasing in <lambda>() constant
397 val easing = FastOutLinearInEasing in <lambda>() constant
/compose/animation/animation-graphics/src/commonMain/kotlin/androidx/compose/animation/graphics/vector/
DAnimator.kt432 val easing = animatorKeyframes[index + 1].interpolator in interpolate() constant