Home
last modified time | relevance | path

Searched refs:startValue (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/animation/
DIntEvaluator.java38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { in evaluate() argument
39 int startInt = startValue; in evaluate()
DFloatEvaluator.java38 public Float evaluate(float fraction, Number startValue, Number endValue) { in evaluate() argument
39 float startFloat = startValue.floatValue(); in evaluate()
DArgbEvaluator.java41 public Object evaluate(float fraction, Object startValue, Object endValue) { in evaluate() argument
42 int startInt = (Integer) startValue; in evaluate()
DTypeEvaluator.java42 public T evaluate(float fraction, T startValue, T endValue); in evaluate() argument
/frameworks/base/core/java/android/view/
DViewPropertyAnimator.java805 private void animatePropertyBy(int constantName, float startValue, float byValue) { in animatePropertyBy() argument
829 NameValuesHolder nameValuePair = new NameValuesHolder(constantName, startValue, byValue); in animatePropertyBy()
/frameworks/base/services/java/com/android/server/
DPowerManagerService.java2184 volatile int startValue; field in PowerManagerService.ScreenBrightnessAnimator
2252 int delta = endValue - startValue; in animateInternal()
2253 newValue = startValue + delta * elapsed / duration; in animateInternal()
2274 Slog.v(TAG, "Animating light: " + "start:" + startValue in animateInternal()
2302 pw.println(" animating: " + "start:" + startValue + ", end:" + endValue in dump()
2338 startValue = currentValue; in animateTo()
/frameworks/base/tools/aapt/
DResourceTable.cpp953 Res_value startValue; in compileResourceFile() local
954 if (!ResTable::stringToInt(startStr, len, &startValue)) { in compileResourceFile()
959 start = startValue.data; in compileResourceFile()
/frameworks/base/docs/html/guide/topics/graphics/
Dprop-animation.jd681 public Object evaluate(float fraction, Object startValue, Object endValue) {
682 float startFloat = ((Number) startValue).floatValue();