Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/unfold/progress/
DTestUnfoldProgressListener.kt28 private var currentRecording: UnfoldTransitionRecording? = null variable in com.android.systemui.unfold.progress.TestUnfoldProgressListener
35 .that(currentRecording) in onTransitionStarted()
38 currentRecording = UnfoldTransitionRecording() in onTransitionStarted()
44 .that(currentRecording) in onTransitionProgress()
46 currentRecording!!.addProgress(progress) in onTransitionProgress()
52 .that(currentRecording) in onTransitionFinishing()
54 currentRecording!!.onFinishing() in onTransitionFinishing()
60 .that(currentRecording) in onTransitionFinished()
62 recordings += currentRecording!! in onTransitionFinished()
63 currentRecording = null in onTransitionFinished()
[all …]