Home
last modified time | relevance | path

Searched refs:tween (Results 1 – 25 of 47) sorted by relevance

12

/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/volume/ui/composable/
DColumnVolumeSliders.kt25 import androidx.compose.animation.core.tween in <lambda>()
112 expandVertically(animationSpec = tween(durationMillis = EXPAND_DURATION_MILLIS)), in <lambda>()
114 shrinkVertically(animationSpec = tween(durationMillis = COLLAPSE_DURATION_MILLIS)), in <lambda>()
200 animationSpec = tween(durationMillis = enterDuration, delayMillis = enterDelay), in enterTransition()
204 animationSpec = tween(durationMillis = enterDuration, delayMillis = enterDelay), in enterTransition()
208 animationSpec = tween(durationMillis = enterDuration, delayMillis = enterDelay), in enterTransition()
216 animationSpec = tween(durationMillis = exitDuration), in exitTransition()
220 animationSpec = tween(durationMillis = exitDuration), in exitTransition()
223 fadeOut(animationSpec = tween(durationMillis = exitDuration)) in exitTransition()
228 tween( in expandButtonEnterTransition()
[all …]
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/
DDrawTweenPath.java38 float tween, in DrawTweenPath() argument
41 mTween = tween; in DrawTweenPath()
72 float tween = buffer.readFloat(); in read() local
76 tween, start, stop); in read()
93 float tween, in apply() argument
99 buffer.writeFloat(tween); in apply()
DColorExpression.java78 public ColorExpression(int id, int mode, int color1, int color2, float tween) { in ColorExpression() argument
85 mOutValue = mValue = tween; in ColorExpression()
89 this.mTween = tween; in ColorExpression()
90 this.mOutTween = tween; in ColorExpression()
215 int color1, int color2, float tween) { in apply() argument
221 buffer.writeFloat(tween); in apply()
231 float tween = buffer.readFloat(); in read() local
233 operations.add(new ColorExpression(id, mode, color1, color2, tween)); in read()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/compose/
DAnimatedNavGraphBuilder.kt23 import androidx.compose.animation.core.tween
88 private val slideInEffect = tween<IntOffset>(
93 private val slideOutEffect = tween<IntOffset>(durationMillis = FADE_IN_MILLIS)
94 private val fadeOutEffect = tween<Float>(
98 private val fadeInEffect = tween<Float>(
/frameworks/base/packages/SystemUI/compose/scene/tests/utils/src/com/android/compose/animation/scene/
DTestValues.kt22 import androidx.compose.animation.core.tween
54 spec = tween(durationMillis = TestTransitionDuration.toInt(), easing = LinearEasing) in <lambda>()
58 spec = tween(durationMillis = TestTransitionDuration.toInt(), easing = FastOutSlowInEasing) in <lambda>()
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/transformation/
DAnchoredSizeTest.kt21 import androidx.compose.animation.core.tween
58 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredSizeEnter()
74 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredSizeExit()
89 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredWidthOnly()
104 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredHeightOnly()
DAnchoredTranslateTest.kt20 import androidx.compose.animation.core.tween
49 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredTranslateExit()
73 spec = tween(16 * 4, easing = LinearEasing) in testAnchoredTranslateEnter()
97 spec = tween(16 * 4, easing = LinearEasing) in anchorPlacedAfterAnchoredElement()
DTranslateTest.kt20 import androidx.compose.animation.core.tween
48 spec = tween(16 * 4, easing = LinearEasing) in testTranslateExit()
71 spec = tween(16 * 4, easing = LinearEasing) in testTranslateEnter()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyguard/ui/composable/blueprint/
DClockTransition.kt20 import androidx.compose.animation.core.tween
46 spec = tween(300, easing = LinearEasing) in <lambda>()
61 spec = tween(300, easing = LinearEasing) in <lambda>()
66 spec = tween(durationMillis = STATUS_AREA_MOVE_UP_MILLIS.toInt()) in TransitionBuilder()
79 spec = tween(durationMillis = STATUS_AREA_MOVE_DOWN_MILLIS.toInt()) in TransitionBuilder()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/scene/ui/composable/transitions/
DFromBouncerToGoneTransition.kt3 import androidx.compose.animation.core.tween
8 spec = tween(durationMillis = 500) in TransitionBuilder()
DFromLockscreenToGoneTransition.kt3 import androidx.compose.animation.core.tween
8 spec = tween(durationMillis = 500) in TransitionBuilder()
DFromLockscreenToCommunalTransition.kt19 import androidx.compose.animation.core.tween
25 spec = tween(durationMillis = 500) in TransitionBuilder()
DFromLockscreenToBouncerTransition.kt3 import androidx.compose.animation.core.tween
9 spec = tween(durationMillis = 500) in lockscreenToBouncerTransition()
DToQuickSettingsTransition.kt19 import androidx.compose.animation.core.tween
30 spec = tween(durationMillis = (DefaultDuration * durationScale).inWholeMilliseconds.toInt()) in TransitionBuilder()
DToQuickSettingsShadeTransition.kt21 import androidx.compose.animation.core.tween
35 spec = tween(durationMillis = (DefaultDuration * durationScale).inWholeMilliseconds.toInt()) in TransitionBuilder()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/volume/panel/component/mediaoutput/ui/composable/
DMediaOutputComponent.kt21 import androidx.compose.animation.core.tween in <lambda>()
199 private fun <T> isPlayingOutSpec() = tween<T>(durationMillis = 400, delayMillis = 500)
201 private fun <T> isPlayingInIconSpec() = tween<T>(durationMillis = 400, delayMillis = 300)
203 private fun <T> isPlayingInIconBackgroundSpec() = tween<T>(durationMillis = 400, delayMillis = 700)
205 private fun <T> isNotPlayingOutIconSpec() = tween<T>(durationMillis = 400, delayMillis = 300)
207 private fun <T> isNotPlayingInIconSpec() = tween<T>(durationMillis = 400, delayMillis = 900)
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/qs/ui/composable/
DQuickSettingsShadeScene.kt22 import androidx.compose.animation.core.tween
176 val QuickSettingsLayoutEnter: EnterTransition = fadeIn(tween(500))
177 val QuickSettingsLayoutExit: ExitTransition = fadeOut(tween(500))
178 val QuickSettingsEditorEnter: EnterTransition = fadeIn(tween(500))
179 val QuickSettingsEditorExit: ExitTransition = fadeOut(tween(500))
DQuickSettingsScene.kt24 import androidx.compose.animation.core.tween
251 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
257 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
318 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
322 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
324 fadeIn(tween(customizingAnimationDuration)), in QuickSettingsScene()
327 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
331 animationSpec = tween(customizingAnimationDuration), in QuickSettingsScene()
333 fadeOut(tween(customizingAnimationDuration)), in QuickSettingsScene()
/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/
DComposeTools.kt21 import androidx.compose.animation.core.tween in <lambda>()
37 tween(
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DElementScenePickerTest.kt20 import androidx.compose.animation.core.tween
43 transition = { spec = tween(4 * 16, easing = LinearEasing) }, in highestZIndexPicker()
69 transition = { spec = tween(4 * 16, easing = LinearEasing) }, in lowestZIndexPicker()
DTransitionDslTest.kt22 import androidx.compose.animation.core.tween
83 from(TestScenes.SceneA, to = TestScenes.SceneB) { spec = tween(durationMillis = 42) } in customTransitionSpec()
127 spec = tween(500) in timestampRange()
150 spec = tween(500) in reversed()
172 spec = tween(500) in defaultReversed()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/
DRemoteComposeBuffer.java613 float tween, in addDrawTweenPath() argument
624 addDrawTweenPath(path1Id, path2Id, tween, start, stop); in addDrawTweenPath()
638 float tween, in addDrawTweenPath() argument
643 tween, start, stop); in addDrawTweenPath()
908 public short addColorExpression(int color1, int color2, float tween) { in addColorExpression() argument
909 ColorExpression c = new ColorExpression(0, 0, color1, color2, tween); in addColorExpression()
924 public short addColorExpression(short color1, int color2, float tween) { in addColorExpression() argument
925 ColorExpression c = new ColorExpression(0, 1, color1, color2, tween); in addColorExpression()
940 public short addColorExpression(int color1, short color2, float tween) { in addColorExpression() argument
941 ColorExpression c = new ColorExpression(0, 2, color1, color2, tween); in addColorExpression()
[all …]
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/
DPatternBouncer.kt23 import androidx.compose.animation.core.tween in <lambda>()
158 tween( in <lambda>()
167 tween( in <lambda>()
194 tween( in <lambda>()
386 tween( in showEntryAnimation()
399 tween( in showEntryAnimation()
460 tween( in showFailureAnimation()
472 tween( in showFailureAnimation()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/util/
DEntryHighlight.kt22 import androidx.compose.animation.core.tween
52 animation = tween(durationMillis = 500),
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/
DCommunalContainer.kt8 import androidx.compose.animation.core.tween in <lambda>()
91 spec = tween(durationMillis = 250) in <lambda>()
95 spec = tween(durationMillis = 1000) in <lambda>()
100 spec = tween(durationMillis = 1000) in <lambda>()
111 spec = tween(durationMillis = TransitionDuration.BETWEEN_HUB_AND_EDIT_MODE_MS) in <lambda>()
120 spec = tween(durationMillis = TransitionDuration.BETWEEN_HUB_AND_EDIT_MODE_MS) in <lambda>()
325 tween( in animatedRadialGradientBackground()

12