Home
last modified time | relevance | path

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

/cts/tests/tests/animation/src/android/animation/cts/
DValueAnimatorTest.java585 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue(); in testOfFloat() local
586 assertTrue(animatedValue >= start); in testOfFloat()
587 assertTrue(animatedValue <= end); in testOfFloat()
606 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfInt() local
607 assertTrue(animatedValue >= start); in testOfInt()
608 assertTrue(animatedValue <= end); in testOfInt()
636 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfArgb() local
637 int alpha = Color.alpha(animatedValue); in testOfArgb()
638 int red = Color.red(animatedValue); in testOfArgb()
639 int green = Color.green(animatedValue); in testOfArgb()
[all …]
DPropertyValuesHolderTest.java289 Integer animatedValue = (Integer) objAnimator.getAnimatedValue(); in testOfInt() local
290 assertTrue(animatedValue >= start); in testOfInt()
291 assertTrue(animatedValue <= end); in testOfInt()
317 Integer animatedValue = (Integer) colorAnimator.getAnimatedValue(); in testOfInt_Property() local
322 assertTrue(Color.red(animatedValue) >= redMin); in testOfInt_Property()
323 assertTrue(Color.red(animatedValue) <= redMax); in testOfInt_Property()
324 assertTrue(Color.blue(animatedValue) >= blueMin); in testOfInt_Property()
325 assertTrue(Color.blue(animatedValue) <= blueMax); in testOfInt_Property()
DObjectAnimatorTest.java295 Integer animatedValue = (Integer) anim.getAnimatedValue(); in testOfArgb()
296 int alpha = Color.alpha(animatedValue); in testOfArgb()
297 int red = Color.red(animatedValue); in testOfArgb()
298 int green = Color.green(animatedValue); in testOfArgb()
299 int blue = Color.blue(animatedValue); in testOfArgb()
/cts/tests/tests/transition/src/android/transition/cts/
DBaseTransitionTest.java153 public void setAnimatedValue(float animatedValue) { in setAnimatedValue() argument
154 mAnimatedValue = animatedValue; in setAnimatedValue()