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.java575 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue(); in testOfFloat() local
576 assertTrue(animatedValue >= start); in testOfFloat()
577 assertTrue(animatedValue <= end); in testOfFloat()
596 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfInt() local
597 assertTrue(animatedValue >= start); in testOfInt()
598 assertTrue(animatedValue <= end); in testOfInt()
626 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfArgb() local
627 int alpha = Color.alpha(animatedValue); in testOfArgb()
628 int red = Color.red(animatedValue); in testOfArgb()
629 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()