Lines Matching defs:converter

367      * @param converter Converts T objects into int parameters for the multi-value setter.
375 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) {
376 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, converter,
563 * @param converter Converts T objects into float parameters for the multi-value setter.
571 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) {
572 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiFloat(propertyName, converter,
608 * <code>converter</code> can be used to change from <code>PointF</code> to the type
615 * @param converter Converts a PointF to the type associated with the setter. May be
622 @Nullable TypeConverter<PointF, ?> converter, Path path) {
623 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path);
663 * @param converter Converts the animated object to the Property type.
672 TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) {
673 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator,
683 * uses a type other than <code>PointF</code>, <code>converter</code> can be used to change
686 * <p>The PointF passed to <code>converter</code> or <code>property</code>, if
687 * <code>converter</code> is <code>null</code>, is reused on each animation frame and should
692 * @param converter Converts a PointF to the type associated with the setter. May be
699 @Nullable TypeConverter<PointF, V> converter, Path path) {
700 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path);