Home
last modified time | relevance | path

Searched refs:TargetBasedAnimation (Results 1 – 25 of 81) sorted by relevance

1234

/compose/animation/animation-core/src/commonTest/kotlin/androidx/compose/animation/core/
DRepeatableAnimationTest.kt40 val animationWrapper = TargetBasedAnimation(repeat, Float.VectorConverter, 0f, 0f) in twoRepeatsValuesCalculation()
79 val repeatAnim = TargetBasedAnimation(repeat, Float.VectorConverter, 0f, 100f) in testRepeatModeReverse()
136 TargetBasedAnimation(repeatShortAnimation, Float.VectorConverter, 0f, 100f) in testInfiniteRepeat()
138 TargetBasedAnimation( in testInfiniteRepeat()
169 TargetBasedAnimation( in testStartOffsetRepeatable()
176 TargetBasedAnimation( in testStartOffsetRepeatable()
188 TargetBasedAnimation( in testStartOffsetRepeatable()
238 TargetBasedAnimation( in testStartOffsetInfiniteRepeatable()
245 TargetBasedAnimation( in testStartOffsetInfiniteRepeatable()
252 TargetBasedAnimation( in testStartOffsetInfiniteRepeatable()
DPhysicsAnimationTest.kt46 val animation = TargetBasedAnimation(spring(), Int.VectorConverter, start, end, 0) in <lambda>()
67 val animation = TargetBasedAnimation(spring(), Float.VectorConverter, start1, end1, 0f) in <lambda>()
79 TargetBasedAnimation(spring(), Float.VectorConverter, start2, end2, startVelocity2) in <lambda>()
105 TargetBasedAnimation( in <lambda>()
136 TargetBasedAnimation( in <lambda>()
167 TargetBasedAnimation( in <lambda>()
189 TargetBasedAnimation(spring(), Float.VectorConverter, 0f, 100f, 0f).also { animation -> in <lambda>()
328 return TargetBasedAnimation( in <lambda>()
DAnimatableTest.kt76 TargetBasedAnimation( in <lambda>()
117 TargetBasedAnimation(tween(500), offsetToVector, initialValue = from, targetValue = to) in <lambda>()
170 TargetBasedAnimation(tween(200, easing = LinearEasing), Float.VectorConverter, 0f, 200f) in <lambda>()
180 TargetBasedAnimation( in <lambda>()
DSuspendAnimationTest.kt33 TargetBasedAnimation( in <lambda>()
67 TargetBasedAnimation(tween(500), offsetToVector, initialValue = from, targetValue = to) in <lambda>()
124 TargetBasedAnimation( in <lambda>()
DSnapAnimationTest.kt27 val animationWrapper = TargetBasedAnimation(animation, Float.VectorConverter, 0f, 0f) in isFinishedAtTheBeginning()
DIsInfiniteTest.kt83 return TargetBasedAnimation(vectorize(), Float.VectorConverter, 0f, 0f) in asAnimation()
/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/
DAnimation.kt115 ): TargetBasedAnimation<V, V> = in getVelocityFromNanos()
116 TargetBasedAnimation( in getVelocityFromNanos()
145 public fun <T, V : AnimationVector> TargetBasedAnimation( in TargetBasedAnimation() method
151 ): TargetBasedAnimation<T, V> = in TargetBasedAnimation()
152 TargetBasedAnimation( in TargetBasedAnimation()
184 public class TargetBasedAnimation<T, V : AnimationVector> in TargetBasedAnimation() class
DInfiniteTransition.kt90 public var animation: TargetBasedAnimation<T, V> =
91 TargetBasedAnimation(this.animationSpec, typeConverter, initialValue, targetValue)
117 TargetBasedAnimation(animationSpec, typeConverter, initialValue, targetValue) in updateValues()
DSuspendAnimation.kt105 TargetBasedAnimation( in animate()
145 TargetBasedAnimation(
DTransition.kt1327 public var animation: TargetBasedAnimation<T, V> by
1329 TargetBasedAnimation(
1340 private var initialValueAnimation: TargetBasedAnimation<T, V>? = null
1448 TargetBasedAnimation( in updateAnimation()
1473 TargetBasedAnimation(spec, typeConverter, initialValue, targetValue, velocityVector) in updateAnimation()
1521 TargetBasedAnimation( in setInitialValueAnimation()
DAnimatable.kt234 TargetBasedAnimation( in animateTo()
/compose/ui/ui-tooling/src/androidMain/kotlin/androidx/compose/ui/tooling/animation/clock/
DAnimateXAsStateClock.android.kt20 import androidx.compose.animation.core.TargetBasedAnimation
45 private var currAnimation: TargetBasedAnimation<T, V> = getCurrentAnimation()
79 private fun getCurrentAnimation(): TargetBasedAnimation<T, V> { in getCurrentAnimation()
80 return TargetBasedAnimation( in getCurrentAnimation()
/compose/animation/animation-core/src/androidInstrumentedTest/kotlin/androidx/compose/animation/core/
DTransitionTest.kt80 TargetBasedAnimation( in <lambda>()
87 TargetBasedAnimation( in <lambda>()
98 TargetBasedAnimation( in <lambda>()
105 TargetBasedAnimation( in <lambda>()
129 val keyframesAnim1 = TargetBasedAnimation(keyframes1, Float.VectorConverter, 0f, 0f) in <lambda>()
130 val keyframesAnim2 = TargetBasedAnimation(keyframes2, Float.VectorConverter, 0f, 0f) in <lambda>()
251 val anim = TargetBasedAnimation(tween(200), Float.VectorConverter, 0f, 1000f) in <lambda>()
289 val anim = TargetBasedAnimation(tween(800), Float.VectorConverter, 0f, 1000f) in <lambda>()
315 val anim = TargetBasedAnimation(tween(800), Float.VectorConverter, 0f, 1000f) in <lambda>()
352 val anim = TargetBasedAnimation(tween(800), Float.VectorConverter, 0f, 1000f) in <lambda>()
DInfiniteTransitionTest.kt51 TargetBasedAnimation( in transitionTest()
67 val keyframesAnim = TargetBasedAnimation(keyframes, Float.VectorConverter, 0f, 0f) in transitionTest()
/compose/material3/adaptive/adaptive-layout/src/commonMain/kotlin/androidx/compose/material3/adaptive/layout/
DAnimateBoundsModifier.kt21 import androidx.compose.animation.core.TargetBasedAnimation
175 private var boundsAnimation: TargetBasedAnimation<IntRect, AnimationVector4D>? = null
177 private fun TargetBasedAnimation<IntRect, AnimationVector4D>.valueAtProgress( in valueAtProgress() method
235 TargetBasedAnimation(animationSpec, IntRectToVector, origin.rect, target.rect) in updateBoundsAnimationIfNeeded()
DAnimateWithFadingModifier.kt21 import androidx.compose.animation.core.TargetBasedAnimation
161 TargetBasedAnimation(this, Float.VectorConverter, -1f, 1f)
164 private fun <T, V : AnimationVector> TargetBasedAnimation<T, V>.getValue(progress: Float) =
/compose/ui/ui-tooling/src/androidMain/kotlin/androidx/compose/ui/tooling/animation/
DAnimationSearch.android.kt24 import androidx.compose.animation.core.TargetBasedAnimation in <lambda>()
211 class TargetBasedSearch(trackAnimation: (TargetBasedAnimation<*, *>) -> Unit) :
212 RememberSearch<TargetBasedAnimation<*, *>>(TargetBasedAnimation::class, trackAnimation)
DPreviewAnimationClock.android.kt22 import androidx.compose.animation.core.TargetBasedAnimation in <lambda>()
166 fun trackTargetBasedAnimations(animation: TargetBasedAnimation<*, *>) { in trackTargetBasedAnimations()
/compose/ui/ui-tooling/src/androidInstrumentedTest/kotlin/androidx/compose/ui/tooling/
DTestAnimationPreview.kt32 import androidx.compose.animation.core.TargetBasedAnimation in <lambda>()
367 TargetBasedAnimation( in TargetBasedAnimationPreview()
/compose/animation/animation-core/bcv/native/
Dcurrent.txt337 …ation.core/TargetBasedAnimation : androidx.compose.animation.core/Animation<#A, #B> { // androidx.…
338 …er<#A, #B>, #A, #A, #B? = ...) // androidx.compose.animation.core/TargetBasedAnimation.<init>|<ini…
340 …final val durationNanos // androidx.compose.animation.core/TargetBasedAnimation.durationNanos|{}du…
341 …-durationNanos>(): kotlin/Long // androidx.compose.animation.core/TargetBasedAnimation.durationNan…
342 …final val initialValue // androidx.compose.animation.core/TargetBasedAnimation.initialValue|{}init…
343 …final fun <get-initialValue>(): #A // androidx.compose.animation.core/TargetBasedAnimation.initial…
344 …final val isInfinite // androidx.compose.animation.core/TargetBasedAnimation.isInfinite|{}isInfini…
345 …-isInfinite>(): kotlin/Boolean // androidx.compose.animation.core/TargetBasedAnimation.isInfinite.…
346 …final val targetValue // androidx.compose.animation.core/TargetBasedAnimation.targetValue|{}target…
347 …final fun <get-targetValue>(): #A // androidx.compose.animation.core/TargetBasedAnimation.targetVa…
[all …]
D1.7.0.txt245 …ation.core/TargetBasedAnimation : androidx.compose.animation.core/Animation<#A, #B> { // androidx.…
246 …ter<#A, #B>, #A, #A, #B? =...) // androidx.compose.animation.core/TargetBasedAnimation.<init>|<ini…
247 …alueFromNanos(kotlin/Long): #A // androidx.compose.animation.core/TargetBasedAnimation.getValueFro…
248 …ctorFromNanos(kotlin/Long): #B // androidx.compose.animation.core/TargetBasedAnimation.getVelocity…
249 …final fun toString(): kotlin/String // androidx.compose.animation.core/TargetBasedAnimation.toStri…
250 …final val durationNanos // androidx.compose.animation.core/TargetBasedAnimation.durationNanos|{}du…
251 …-durationNanos>(): kotlin/Long // androidx.compose.animation.core/TargetBasedAnimation.durationNan…
252 …final val initialValue // androidx.compose.animation.core/TargetBasedAnimation.initialValue|{}init…
253 …final fun <get-initialValue>(): #A // androidx.compose.animation.core/TargetBasedAnimation.initial…
254 …final val isInfinite // androidx.compose.animation.core/TargetBasedAnimation.isInfinite|{}isInfini…
[all …]
D1.8.0-beta02.txt337 …ation.core/TargetBasedAnimation : androidx.compose.animation.core/Animation<#A, #B> { // androidx.…
338 …er<#A, #B>, #A, #A, #B? = ...) // androidx.compose.animation.core/TargetBasedAnimation.<init>|<ini…
340 …final val durationNanos // androidx.compose.animation.core/TargetBasedAnimation.durationNanos|{}du…
341 …-durationNanos>(): kotlin/Long // androidx.compose.animation.core/TargetBasedAnimation.durationNan…
342 …final val initialValue // androidx.compose.animation.core/TargetBasedAnimation.initialValue|{}init…
343 …final fun <get-initialValue>(): #A // androidx.compose.animation.core/TargetBasedAnimation.initial…
344 …final val isInfinite // androidx.compose.animation.core/TargetBasedAnimation.isInfinite|{}isInfini…
345 …-isInfinite>(): kotlin/Boolean // androidx.compose.animation.core/TargetBasedAnimation.isInfinite.…
346 …final val targetValue // androidx.compose.animation.core/TargetBasedAnimation.targetValue|{}target…
347 …final fun <get-targetValue>(): #A // androidx.compose.animation.core/TargetBasedAnimation.targetVa…
[all …]
/compose/animation/animation-core/api/
Drestricted_1.4.0-beta02.txt85 …ore.AnimationVector> androidx.compose.animation.core.TargetBasedAnimation<T,V> TargetBasedAnimatio…
412 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
417 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;
548 …public final class TargetBasedAnimation<T, V extends androidx.compose.animation.core.AnimationVect…
549 …ctor public TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec<T> animationSpec, a…
593 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
598 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;
D1.4.0-beta02.txt85 …ore.AnimationVector> androidx.compose.animation.core.TargetBasedAnimation<T,V> TargetBasedAnimatio…
415 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
420 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;
554 …public final class TargetBasedAnimation<T, V extends androidx.compose.animation.core.AnimationVect…
555 …ctor public TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec<T> animationSpec, a…
598 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
603 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;
D1.4.0-beta01.txt85 …ore.AnimationVector> androidx.compose.animation.core.TargetBasedAnimation<T,V> TargetBasedAnimatio…
415 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
420 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;
554 …public final class TargetBasedAnimation<T, V extends androidx.compose.animation.core.AnimationVect…
555 …ctor public TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec<T> animationSpec, a…
598 method public androidx.compose.animation.core.TargetBasedAnimation<T,V> getAnimation();
603 property public final androidx.compose.animation.core.TargetBasedAnimation<T,V> animation;

1234