Lines Matching defs:converter

344      * @param converter Converts T objects into int parameters for the multi-value setter.
352 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) {
353 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, converter,
540 * @param converter Converts T objects into float parameters for the multi-value setter.
548 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) {
549 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiFloat(propertyName, converter,
585 * <code>converter</code> can be used to change from <code>PointF</code> to the type
592 * @param converter Converts a PointF to the type associated with the setter. May be
599 @Nullable TypeConverter<PointF, ?> converter, Path path) {
600 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path);
640 * @param converter Converts the animated object to the Property type.
649 TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) {
650 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator,
660 * uses a type other than <code>PointF</code>, <code>converter</code> can be used to change
663 * <p>The PointF passed to <code>converter</code> or <code>property</code>, if
664 * <code>converter</code> is <code>null</code>, is reused on each animation frame and should
669 * @param converter Converts a PointF to the type associated with the setter. May be
676 @Nullable TypeConverter<PointF, V> converter, Path path) {
677 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path);