Searched defs:evaluator (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DKeyframes.java29 * both of which assume their own evaluator to speed up calculations with those primitive
32 * @param evaluator The TypeEvaluator to be used to calculate animated values.
34 void setEvaluator(TypeEvaluator evaluator); argument
43 * animation's interpolator) and the evaluator used to calculate in-between values. This
H A DKeyframeSet.java164 * both of which assume their own evaluator to speed up calculations with those primitive
167 * @param evaluator The TypeEvaluator to be used to calculate animated values.
169 public void setEvaluator(TypeEvaluator evaluator) { argument
170 mEvaluator = evaluator;
192 * animation's interpolator) and the evaluator used to calculate in-between values. This
H A DPathKeyframes.java124 public void setEvaluator(TypeEvaluator evaluator) { argument
212 public void setEvaluator(TypeEvaluator evaluator) { argument
H A DObjectAnimator.java345 * @param evaluator A TypeEvaluator that will be called on each animation frame to
352 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) {
354 evaluator, values);
541 * @param evaluator A TypeEvaluator that will be called on each animation frame to
548 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) {
550 evaluator, values);
565 * @param evaluator A TypeEvaluator that will be called on each animation frame to
572 TypeEvaluator evaluator, Object... values) {
575 anim.setEvaluator(evaluator);
613 * @param evaluator
351 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
547 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
571 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
620 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
648 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
[all...]
H A DPropertyValuesHolder.java115 * The type evaluator used to calculate the animated values. This evaluator is determined
118 * type will need to set the evaluator to a custom evaluator for that type.
205 IntArrayEvaluator evaluator = new IntArrayEvaluator(new int[numParameters]);
206 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
235 * @param evaluator A TypeEvaluator that will be called on each animation frame to
244 TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) {
245 return new MultiIntValuesHolder(propertyName, converter, evaluator, values);
261 * @param evaluator Use
243 ofMultiInt(String propertyName, TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) argument
265 ofMultiInt(String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
360 ofMultiFloat(String propertyName, TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) argument
382 ofMultiFloat(String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
400 ofObject(String propertyName, TypeEvaluator evaluator, Object... values) argument
445 ofObject(Property property, TypeEvaluator<V> evaluator, V... values) argument
472 ofObject(Property<?, V> property, TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) argument
981 setEvaluator(TypeEvaluator evaluator) argument
1357 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1365 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
1460 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1468 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
[all...]
H A DValueAnimator.java342 * @param evaluator A TypeEvaluator that will be called on each animation frame to
348 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { argument
351 anim.setEvaluator(evaluator);
898 * The type evaluator to be used when calculating the animated values of this animation.
899 * The system will automatically assign a float or int evaluator based on the type
902 * necessary with int values that represent colors), a custom evaluator needs to be assigned.
906 * <p>If this ValueAnimator has only one set of values being animated between, this evaluator
908 * the case if PropertyValuesHolder objects were set on the ValueAnimator, then the evaluator
911 * @param value the evaluator to be used this animation
1264 * and then into an animated value (from the evaluator
[all...]

Completed in 52 milliseconds