Searched refs:currValue (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | FlingAnimationUtils.java | 75 public void apply(Animator animator, float currValue, float endValue, float velocity) { in apply() argument 76 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply() 88 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument 90 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue)); in apply() 104 public void apply(Animator animator, float currValue, float endValue, float velocity, in apply() argument 106 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply() 123 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, in apply() argument 125 AnimatorProperties properties = getProperties(currValue, endValue, velocity, in apply() 131 private AnimatorProperties getProperties(float currValue, in getProperties() argument 134 * Math.sqrt(Math.abs(endValue - currValue) / maxDistance)); in getProperties() [all …]
|