Searched refs:animatedValue (Results 1 – 4 of 4) sorted by relevance
575 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue(); in testOfFloat() local576 assertTrue(animatedValue >= start); in testOfFloat()577 assertTrue(animatedValue <= end); in testOfFloat()596 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfInt() local597 assertTrue(animatedValue >= start); in testOfInt()598 assertTrue(animatedValue <= end); in testOfInt()626 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue(); in testOfArgb() local627 int alpha = Color.alpha(animatedValue); in testOfArgb()628 int red = Color.red(animatedValue); in testOfArgb()629 int green = Color.green(animatedValue); in testOfArgb()[all …]
275 Integer animatedValue = (Integer) objAnimator.getAnimatedValue(); in testOfInt() local276 assertTrue(animatedValue >= start); in testOfInt()277 assertTrue(animatedValue <= end); in testOfInt()303 Integer animatedValue = (Integer) colorAnimator.getAnimatedValue(); in testOfInt_Property() local308 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()
242 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()
153 public void setAnimatedValue(float animatedValue) { in setAnimatedValue() argument154 mAnimatedValue = animatedValue; in setAnimatedValue()