Searched refs:evaluator (Results 1 - 14 of 14) 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 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 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 DPathKeyframes.java121 public void setEvaluator(TypeEvaluator evaluator) { argument
209 public void setEvaluator(TypeEvaluator evaluator) { argument
H A DAnimatorInflater.java305 TypeEvaluator evaluator = new PathDataEvaluator();
311 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
318 TypeEvaluator evaluator = new PathDataEvaluator();
319 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
324 TypeEvaluator evaluator = null;
328 evaluator = ArgbEvaluator.getInstance();
394 if (returnValue != null && evaluator != null) {
395 returnValue.setEvaluator(evaluator);
455 TypeEvaluator evaluator
[all...]
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 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/base/core/java/android/transition/
H A DChangeClipBounds.java103 RectEvaluator evaluator = new RectEvaluator(new Rect());
105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end);
/frameworks/support/transition/src/android/support/transition/
H A DChangeClipBounds.java106 RectEvaluator evaluator = new RectEvaluator(new Rect());
108 evaluator, start, end);
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DAnimatorInflaterCompat.java236 TypeEvaluator evaluator = new PathDataEvaluator();
242 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
245 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
249 TypeEvaluator evaluator = new PathDataEvaluator();
250 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
255 TypeEvaluator evaluator = null;
259 evaluator = ArgbEvaluator.getInstance();
325 if (returnValue != null && evaluator != null) {
326 returnValue.setEvaluator(evaluator);
/frameworks/base/core/java/com/android/internal/transition/
H A DEpicenterTranslateClipReveal.java214 final StateEvaluator evaluator = new StateEvaluator();
222 final ObjectAnimator animX = ObjectAnimator.ofObject(view, propX, evaluator, startX, endX);
228 final ObjectAnimator animY = ObjectAnimator.ofObject(view, propY, evaluator, startY, endY);
/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...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp308 RpnEvaluator evaluator(*m_pModule, m_LDBackend);
321 evaluator.eval((*out)->prolog().subAlign(), in_align);
332 evaluator.eval((*out)->prolog().align(), out_align);
741 RpnEvaluator evaluator(*m_pModule, m_LDBackend);
754 scriptSymsFinalized &= assignment.assign(evaluator);
766 evaluator.eval((*assert).getRpnExpr(), res);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2107 RpnEvaluator evaluator(pModule, *this);
2131 (*it).assign(evaluator);
2150 evaluator.eval((*out)->prolog().vma(), vma);
2268 (*it).second.assign(evaluator);

Completed in 385 milliseconds