Searched refs:TypeEvaluator (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DTypeEvaluator.java20 * Interface for use with the {@link ValueAnimator#setEvaluator(TypeEvaluator)} function. Evaluators
25 * @see ValueAnimator#setEvaluator(TypeEvaluator)
27 public interface TypeEvaluator<T> { interface
H A DFloatEvaluator.java22 public class FloatEvaluator implements TypeEvaluator<Number> {
H A DIntEvaluator.java22 public class IntEvaluator implements TypeEvaluator<Integer> {
H A DRectEvaluator.java23 public class RectEvaluator implements TypeEvaluator<Rect> {
H A DArgbEvaluator.java23 public class ArgbEvaluator implements TypeEvaluator {
H A DObjectAnimator.java280 * @param evaluator A TypeEvaluator that will be called on each animation frame to
287 TypeEvaluator evaluator, Object... values) {
303 * @param evaluator A TypeEvaluator that will be called on each animation frame to
310 TypeEvaluator<V> evaluator, V... values) {
378 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values));
381 (TypeEvaluator) null, values));
H A DPropertyValuesHolder.java68 * functions and in deriving the type of TypeEvaluator.
79 private static final TypeEvaluator sIntEvaluator = new IntEvaluator();
80 private static final TypeEvaluator sFloatEvaluator = new FloatEvaluator();
117 private TypeEvaluator mEvaluator;
191 * set of Object values. This variant also takes a TypeEvaluator because the system
195 * @param evaluator A TypeEvaluator that will be called on each animation frame to
201 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator,
211 * set of Object values. This variant also takes a TypeEvaluator because the system
215 * @param evaluator A TypeEvaluator that will be called on each animation frame to
222 TypeEvaluator<
[all...]
H A DKeyframeSet.java39 TypeEvaluator mEvaluator;
141 * Sets the TypeEvaluator to be used when calculating animated values. This object
146 * @param evaluator The TypeEvaluator to be used to calculate animated values.
148 public void setEvaluator(TypeEvaluator evaluator) {
H A DValueAnimator.java321 * factory method also takes a TypeEvaluator object that the ValueAnimator will use
324 * @param evaluator A TypeEvaluator that will be called on each animation frame to
330 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) {
405 * <p>There should be a TypeEvaluator set on the ValueAnimator that knows how to interpolate
891 public void setEvaluator(TypeEvaluator value) {
H A DAnimatorInflater.java198 TypeEvaluator evaluator = null;
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java20 import android.animation.TypeEvaluator;
969 TypeEvaluator<MagnificationSpec> evaluator = new TypeEvaluator<MagnificationSpec>() {

Completed in 570 milliseconds