HomeSort by relevance Sort by last modified time
    Searched refs:startInt (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/animation/
IntEvaluator.java 39 int startInt = startValue;
40 return (int)(startInt + fraction * (endValue - startInt));
ArgbEvaluator.java 42 int startInt = (Integer) startValue;
43 int startA = (startInt >> 24) & 0xff;
44 int startR = (startInt >> 16) & 0xff;
45 int startG = (startInt >> 8) & 0xff;
46 int startB = startInt & 0xff;

Completed in 163 milliseconds