Home | History | Annotate | Download | only in statusbar

Lines Matching refs:endValue

73      * @param endValue the end value of the animator
76 public void apply(Animator animator, float currValue, float endValue, float velocity) {
77 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
86 * @param endValue the end value of the animator
89 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
91 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
100 * @param endValue the end value of the animator
105 public void apply(Animator animator, float currValue, float endValue, float velocity,
107 AnimatorProperties properties = getProperties(currValue, endValue, velocity,
119 * @param endValue the end value of the animator
124 public void apply(ViewPropertyAnimator animator, float currValue, float endValue,
126 AnimatorProperties properties = getProperties(currValue, endValue, velocity,
133 float endValue, float velocity, float maxDistance) {
135 * Math.sqrt(Math.abs(endValue - currValue) / maxDistance));
136 float diff = Math.abs(endValue - currValue);
167 * @param endValue the end value of the animator
172 public void applyDismissing(Animator animator, float currValue, float endValue,
174 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity,
187 * @param endValue the end value of the animator
192 public void applyDismissing(ViewPropertyAnimator animator, float currValue, float endValue,
194 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity,
200 private AnimatorProperties getDismissingProperties(float currValue, float endValue,
203 * Math.pow(Math.abs(endValue - currValue) / maxDistance, 0.5f));
204 float diff = Math.abs(endValue - currValue);