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.java576 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue(); in testOfFloat() local
577 assertTrue(animatedValue >= start); in testOfFloat()
578 assertTrue(animatedValue <= end); in testOfFloat()
597 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfInt() local
598 assertTrue(animatedValue >= start); in testOfInt()
599 assertTrue(animatedValue <= end); in testOfInt()
627 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfArgb() local
628 int alpha = Color.alpha(animatedValue); in testOfArgb()
629 int red = Color.red(animatedValue); in testOfArgb()
630 int green = Color.green(animatedValue); in testOfArgb()
[all …]
DPropertyValuesHolderTest.java275 Integer animatedValue = (Integer) objAnimator.getAnimatedValue(); in testOfInt() local
276 assertTrue(animatedValue >= start); in testOfInt()
277 assertTrue(animatedValue <= end); in testOfInt()
303 Integer animatedValue = (Integer) colorAnimator.getAnimatedValue(); in testOfInt_Property() local
308 assertTrue(Color.red(animatedValue) >= redMin); in testOfInt_Property()
309 assertTrue(Color.red(animatedValue) <= redMax); in testOfInt_Property()
310 assertTrue(Color.blue(animatedValue) >= blueMin); in testOfInt_Property()
311 assertTrue(Color.blue(animatedValue) <= blueMax); in testOfInt_Property()
DObjectAnimatorTest.java242 Integer animatedValue = (Integer) anim.getAnimatedValue(); in testOfArgb()
243 int alpha = Color.alpha(animatedValue); in testOfArgb()
244 int red = Color.red(animatedValue); in testOfArgb()
245 int green = Color.green(animatedValue); in testOfArgb()
246 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()