Home
last modified time | relevance | path

Searched refs:startInt (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
DArgbEvaluator.java58 int startInt = (Integer) startValue; in evaluate() local
59 float startA = ((startInt >> 24) & 0xff) / 255.0f; in evaluate()
60 float startR = ((startInt >> 16) & 0xff) / 255.0f; in evaluate()
61 float startG = ((startInt >> 8) & 0xff) / 255.0f; in evaluate()
62 float startB = ( startInt & 0xff) / 255.0f; in evaluate()
DIntEvaluator.java39 int startInt = startValue; in evaluate() local
40 return (int)(startInt + fraction * (endValue - startInt)); in evaluate()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DMultiProducerActivity.java291 static int evaluate(float fraction, int startInt, int endInt) { in evaluate() argument
292 int startA = (startInt >> 24) & 0xff; in evaluate()
293 int startR = (startInt >> 16) & 0xff; in evaluate()
294 int startG = (startInt >> 8) & 0xff; in evaluate()
295 int startB = startInt & 0xff; in evaluate()