Searched defs:evaluator (Results 1 - 7 of 7) 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.java158 * both of which assume their own evaluator to speed up calculations with those primitive
161 * @param evaluator The TypeEvaluator to be used to calculate animated values.
163 public void setEvaluator(TypeEvaluator evaluator) { argument
164 mEvaluator = evaluator;
186 * animation's interpolator) and the evaluator used to calculate in-between values. This
H A DPathKeyframes.java121 public void setEvaluator(TypeEvaluator evaluator) { argument
209 public void setEvaluator(TypeEvaluator evaluator) { argument
H A DObjectAnimator.java372 * @param evaluator A TypeEvaluator that will be called on each animation frame to
380 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) {
382 evaluator, values);
573 * @param evaluator A TypeEvaluator that will be called on each animation frame to
581 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) {
583 evaluator, values);
604 * @param evaluator A TypeEvaluator that will be called on each animation frame to
611 TypeEvaluator evaluator, Object... values) {
614 anim.setEvaluator(evaluator);
658 * @param evaluator
379 ofMultiInt(Object target, String propertyName, TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) argument
580 ofMultiFloat(Object target, String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) argument
610 ofObject(Object target, String propertyName, TypeEvaluator evaluator, Object... values) argument
666 ofObject(T target, Property<T, V> property, TypeEvaluator<V> evaluator, V... values) argument
701 ofObject(T target, Property<T, P> property, TypeConverter<V, P> converter, TypeEvaluator<V> evaluator, V... values) argument
[all...]
H A DPropertyValuesHolder.java111 * The type evaluator used to calculate the animated values. This evaluator is determined
114 * type will need to set the evaluator to a custom evaluator for that type.
201 IntArrayEvaluator evaluator = new IntArrayEvaluator(new int[numParameters]);
202 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
231 * @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
358 ofMultiFloat(String propertyName, TypeConverter<V, float[]> converter, TypeEvaluator<V> evaluator, V... values) argument
380 ofMultiFloat(String propertyName, TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, Keyframe... values) argument
403 ofObject(String propertyName, TypeEvaluator evaluator, Object... values) argument
454 ofObject(Property property, TypeEvaluator<V> evaluator, V... values) argument
487 ofObject(Property<?, V> property, TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) argument
1005 setEvaluator(TypeEvaluator evaluator) argument
1449 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1457 MultiFloatValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
1556 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Object... values) argument
1564 MultiIntValuesHolder(String propertyName, TypeConverter converter, TypeEvaluator evaluator, Keyframes keyframes) argument
[all...]
H A DValueAnimator.java404 * @param evaluator A TypeEvaluator that will be called on each animation frame to
410 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { argument
413 anim.setEvaluator(evaluator);
963 * The type evaluator to be used when calculating the animated values of this animation.
964 * The system will automatically assign a float or int evaluator based on the type
967 * necessary with int values that represent colors), a custom evaluator needs to be assigned.
971 * <p>If this ValueAnimator has only one set of values being animated between, this evaluator
973 * the case if PropertyValuesHolder objects were set on the ValueAnimator, then the evaluator
976 * @param value the evaluator to be used this animation
1502 * and then into an animated value (from the evaluator
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNetworkSelector.java64 * have its evaluator to choose the best WiFi network for the device to connect
65 * to. When registering a WiFi network evaluator with the WiFi Network Selector,
86 * Get the evaluator name.
91 * Update the evaluator.
490 * Register a network evaluator
492 * @param evaluator the network evaluator to be registered
495 * @return true if the evaluator is successfully registered with QNS;
496 * false if failed to register the evaluator
498 public boolean registerNetworkEvaluator(NetworkEvaluator evaluator, in argument
[all...]

Completed in 1091 milliseconds