HomeSort by relevance Sort by last modified time
    Searched defs:animatedValue (Results 1 - 3 of 3) sorted by null

  /frameworks/base/libs/hwui/
PropertyValuesHolder.cpp 88 float animatedValue = calculateAnimatedValue(fraction);
89 mGroup->mutateProperties()->setPropertyValue(mPropertyId, animatedValue);
93 SkColor animatedValue = calculateAnimatedValue(fraction);
94 mFullPath->mutateProperties()->setColorPropertyValue(mPropertyId, animatedValue);
98 float animatedValue = calculateAnimatedValue(fraction);
99 mFullPath->mutateProperties()->setPropertyValue(mPropertyId, animatedValue);
108 float animatedValue = calculateAnimatedValue(fraction);
109 mTree->mutateProperties()->setRootAlpha(animatedValue);
  /cts/tests/tests/animation/src/android/animation/cts/
PropertyValuesHolderTest.java 274 Integer animatedValue = (Integer) objAnimator.getAnimatedValue();
275 assertTrue(animatedValue >= start);
276 assertTrue(animatedValue <= end);
302 Integer animatedValue = (Integer) colorAnimator.getAnimatedValue();
307 assertTrue(Color.red(animatedValue) >= redMin);
308 assertTrue(Color.red(animatedValue) <= redMax);
309 assertTrue(Color.blue(animatedValue) >= blueMin);
310 assertTrue(Color.blue(animatedValue) <= blueMax);
    [all...]
ValueAnimatorTest.java 536 Float animatedValue = (Float) valueAnimatorLocal.getAnimatedValue();
537 assertTrue(animatedValue >= start);
538 assertTrue(animatedValue <= end);
557 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue();
558 assertTrue(animatedValue >= start);
559 assertTrue(animatedValue <= end);
587 Integer animatedValue = (Integer) valueAnimatorLocal.getAnimatedValue();
588 int alpha = Color.alpha(animatedValue);
589 int red = Color.red(animatedValue);
590 int green = Color.green(animatedValue);
    [all...]

Completed in 79 milliseconds