Lines Matching defs:converter

220         PointFToIntArray converter = new PointFToIntArray();
221 return new MultiIntValuesHolder(propertyName, converter, null, keyframes);
227 * values are converted to <code>int[]</code> using the converter.
231 * @param converter Used to convert the animated value to setter parameters.
241 TypeConverter<V, int[]> converter, TypeEvaluator<V> evaluator, V... values) {
242 return new MultiIntValuesHolder(propertyName, converter, evaluator, values);
250 * <code>converter</code> converts the values to parameters in the setter function.
256 * @param converter Converts <code>values</code> into int parameters for the setter.
263 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) {
265 return new MultiIntValuesHolder(propertyName, converter, evaluator, keyframeSet);
338 PointFToFloatArray converter = new PointFToFloatArray();
339 return new MultiFloatValuesHolder(propertyName, converter, null, keyframes);
345 * values are converted to <code>float[]</code> using the converter.
349 * @param converter Used to convert the animated value to setter parameters.
358 TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) {
359 return new MultiFloatValuesHolder(propertyName, converter, evaluator, values);
367 * <code>converter</code> converts the values to parameters in the setter function.
373 * @param converter Converts <code>values</code> into float parameters for the setter.
380 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) {
382 return new MultiFloatValuesHolder(propertyName, converter, evaluator, keyframeSet);
411 * <p>The PointF passed to <code>converter</code> or <code>property</code>, if
412 * <code>converter</code> is <code>null</code>, is reused on each animation frame and should
416 * @param converter Converts a PointF to the type associated with the setter. May be
422 TypeConverter<PointF, ?> converter, Path path) {
426 pvh.setConverter(converter);
460 * @param converter Converts the animated object to the Property type.
470 TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) {
472 pvh.setConverter(converter);
484 * <p>The PointF passed to <code>converter</code> or <code>property</code>, if
485 * <code>converter</code> is <code>null</code>, is reused on each animation frame and should
489 * @param converter Converts a PointF to the type associated with the setter. May be
495 TypeConverter<PointF, V> converter, Path path) {
499 pvh.setConverter(converter);
648 * Sets the converter to convert from the values type to the setter's parameter type.
649 * If only one value is supplied, <var>converter</var> must be a
651 * @param converter The converter to use to convert values.
653 public void setConverter(TypeConverter converter) {
654 mConverter = converter;
1360 public MultiFloatValuesHolder(String propertyName, TypeConverter converter,
1363 setConverter(converter);
1368 public MultiFloatValuesHolder(String propertyName, TypeConverter converter,
1371 setConverter(converter);
1467 public MultiIntValuesHolder(String propertyName, TypeConverter converter,
1470 setConverter(converter);
1475 public MultiIntValuesHolder(String propertyName, TypeConverter converter,
1478 setConverter(converter);