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.java536 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue(); in testOfFloat() local
537 assertTrue(animatedValue >= start); in testOfFloat()
538 assertTrue(animatedValue <= end); in testOfFloat()
557 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfInt() local
558 assertTrue(animatedValue >= start); in testOfInt()
559 assertTrue(animatedValue <= end); in testOfInt()
587 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfArgb() local
588 int alpha = Color.alpha(animatedValue); in testOfArgb()
589 int red = Color.red(animatedValue); in testOfArgb()
590 int green = Color.green(animatedValue); in testOfArgb()
[all …]
DPropertyValuesHolderTest.java274 Integer animatedValue = (Integer) objAnimator.getAnimatedValue(); in testOfInt() local
275 assertTrue(animatedValue >= start); in testOfInt()
276 assertTrue(animatedValue <= end); in testOfInt()
302 Integer animatedValue = (Integer) colorAnimator.getAnimatedValue(); in testOfInt_Property() local
307 assertTrue(Color.red(animatedValue) >= redMin); in testOfInt_Property()
308 assertTrue(Color.red(animatedValue) <= redMax); in testOfInt_Property()
309 assertTrue(Color.blue(animatedValue) >= blueMin); in testOfInt_Property()
310 assertTrue(Color.blue(animatedValue) <= blueMax); in testOfInt_Property()
DObjectAnimatorTest.java241 Integer animatedValue = (Integer) anim.getAnimatedValue(); in testOfArgb()
242 int alpha = Color.alpha(animatedValue); in testOfArgb()
243 int red = Color.red(animatedValue); in testOfArgb()
244 int green = Color.green(animatedValue); in testOfArgb()
245 int blue = Color.blue(animatedValue); in testOfArgb()
/cts/tests/tests/transition/src/android/transition/cts/
DBaseTransitionTest.java147 public void setAnimatedValue(float animatedValue) { in setAnimatedValue() argument
148 mAnimatedValue = animatedValue; in setAnimatedValue()