Home
last modified time | relevance | path

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

/cts/tests/tests/animation/src/android/animation/cts/
DAnimationActivity.java82 public ValueAnimator createAnimator(Object object,String propertyName, long duration, in createAnimator() method in AnimationActivity
94 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, repeatMode, in createAnimatorWithRepeatMode()
99 return createAnimator(view.newBall, "y", 1000, repeatCount, ValueAnimator.REVERSE, in createAnimatorWithRepeatCount()
104 return createAnimator(view.newBall, "y", duration ,ValueAnimator.INFINITE, in createAnimatorWithDuration()
109 return createAnimator(view.newBall, "y", 1000, ValueAnimator.INFINITE, in createAnimatorWithInterpolator()
DPropertyValuesHolderTest.java95 private ObjectAnimator createAnimator(Keyframe... keyframes) { in createAnimator() method in PropertyValuesHolderTest
138 ObjectAnimator objAnimator1 = createAnimator(emptyKeyframe1, Keyframe.ofFloat(1f, 100f)); in testResetValues()
150 ObjectAnimator objAnimator2 = createAnimator(emptyKeyframe2, Keyframe.ofFloat(1f, 200f)); in testResetValues()
164 ObjectAnimator objAnimator3 = createAnimator(fullKeyframe, Keyframe.ofFloat(1f, 500f)); in testResetValues()
/cts/tests/tests/transition/src/android/transition/cts/
DChangeImageTransformTest.java252 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues, in createAnimator() method in ChangeImageTransformTest.CaptureMatrix
254 Animator animator = super.createAnimator(sceneRoot, startValues, endValues); in createAnimator()