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

/frameworks/base/core/java/android/animation/
H A DKeyframes.java30 * both of which assume their own evaluator to speed up calculations with those primitive
33 * @param evaluator The TypeEvaluator to be used to calculate animated values.
35 void setEvaluator(TypeEvaluator evaluator); argument
44 * animation's interpolator) and the evaluator used to calculate in-between values. This
H A DKeyframeSet.java166 * both of which assume their own evaluator to speed up calculations with those primitive
169 * @param evaluator The TypeEvaluator to be used to calculate animated values.
171 public void setEvaluator(TypeEvaluator evaluator) { argument
172 mEvaluator = evaluator;
194 * 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.java112 * The type evaluator used to calculate the animated values. This evaluator is determined
115 * type will need to set the evaluator to a custom evaluator for that type.
202 IntArrayEvaluator evaluator = new IntArrayEvaluator(new int[numParameters]);
203 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
232 * @param evaluator A TypeEvaluator that will be called on each animation frame to
241 TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) {
242 return new MultiIntValuesHolder(propertyName, converter, evaluator, values);
258 * @param evaluator Use
240 ofMultiInt(String propertyName, TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) argument
262 ofMultiInt(String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
357 ofMultiFloat(String propertyName, TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) argument
379 ofMultiFloat(String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
397 ofObject(String propertyName, TypeEvaluator evaluator, Object... values) argument
442 ofObject(Property property, TypeEvaluator<V> evaluator, V... values) argument
469 ofObject(Property<?, V> property, TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) argument
982 setEvaluator(TypeEvaluator evaluator) argument
1360 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1368 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
1467 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1475 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
[all...]
H A DValueAnimator.java352 * @param evaluator A TypeEvaluator that will be called on each animation frame to
358 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { argument
361 anim.setEvaluator(evaluator);
954 * The type evaluator to be used when calculating the animated values of this animation.
955 * The system will automatically assign a float or int evaluator based on the type
958 * necessary with int values that represent colors), a custom evaluator needs to be assigned.
962 * <p>If this ValueAnimator has only one set of values being animated between, this evaluator
964 * the case if PropertyValuesHolder objects were set on the ValueAnimator, then the evaluator
967 * @param value the evaluator to be used this animation
1355 * and then into an animated value (from the evaluator
[all...]

Completed in 105 milliseconds