Home
last modified time | relevance | path

Searched refs:play (Results 1 – 4 of 4) sorted by relevance

/platform_testing/libraries/motion/compose/tests/src/platform/test/motion/compose/
DComposeToolkitTest.kt83 content = { play -> in <lambda>() method
85 animateDpAsState(if (play) 90.dp else 0.dp) { completed = true } in <lambda>()
109 content = { play -> in <lambda>() method
114 .width(if (play) 90.dp else 10.dp) in <lambda>()
134 content = { play -> in <lambda>() method
136 animateFloatAsState(if (play) 1f else 0f) { completed = true } in <lambda>()
162 content = { play -> in <lambda>() method
164 animateFloatAsState(if (play) 1f else 0f) { completed = true } in <lambda>()
602 content = { play -> in <lambda>() method
621 val exportedFrameCount = if (play) frameCount + 100 else frameCount in <lambda>()
/platform_testing/libraries/motion/tests/src/platform/test/motion/testing/
DSampleScene.kt34 play( in createSlideLeftAnimator()
/platform_testing/libraries/systemui-helper/src/android/platform/helpers/media/
DMediaController.java68 public void play() { in play() method in MediaController
/platform_testing/libraries/motion/compose/src/platform/test/motion/compose/
DComposeToolkit.kt201 content: @Composable (play: Boolean) -> Unit, in recordMotion()