Home
last modified time | relevance | path

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

/cts/tests/tests/animation/src/android/animation/cts/
DValueAnimatorTest.java169 final ValueAnimator delayedAnim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); in testSetCurrentPlayTime() local
170 delayedAnim.setStartDelay(mDuration); in testSetCurrentPlayTime()
181 delayedAnim.setCurrentPlayTime(mDuration / 2); in testSetCurrentPlayTime()
182 currentPlayTime = delayedAnim.getCurrentPlayTime(); in testSetCurrentPlayTime()
183 currentFraction = delayedAnim.getAnimatedFraction(); in testSetCurrentPlayTime()
184 currentValue = (Float) delayedAnim.getAnimatedValue(); in testSetCurrentPlayTime()
199 currentPlayTime = delayedAnim.getCurrentPlayTime(); in testSetCurrentPlayTime()
200 currentFraction = delayedAnim.getAnimatedFraction(); in testSetCurrentPlayTime()
201 currentValue = (Float) delayedAnim.getAnimatedValue(); in testSetCurrentPlayTime()
209 delayedAnim.start(); in testSetCurrentPlayTime()
[all …]