Home
last modified time | relevance | path

Searched refs:evaluator (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/animation/
DObjectAnimator.java258 TypeEvaluator evaluator, Object... values) { in ofObject() argument
261 anim.setEvaluator(evaluator); in ofObject()
281 TypeEvaluator<V> evaluator, V... values) { in ofObject() argument
284 anim.setEvaluator(evaluator); in ofObject()
DPropertyValuesHolder.java201 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, in ofObject() argument
205 pvh.setEvaluator(evaluator); in ofObject()
222 TypeEvaluator<V> evaluator, V... values) { in ofObject() argument
225 pvh.setEvaluator(evaluator); in ofObject()
648 public void setEvaluator(TypeEvaluator evaluator) { in setEvaluator() argument
649 mEvaluator = evaluator; in setEvaluator()
650 mKeyframeSet.setEvaluator(evaluator); in setEvaluator()
DAnimatorInflater.java198 TypeEvaluator evaluator = null; in loadAnimator() local
300 if (evaluator != null) { in loadAnimator()
301 anim.setEvaluator(evaluator); in loadAnimator()
DKeyframeSet.java135 public void setEvaluator(TypeEvaluator evaluator) { in setEvaluator() argument
136 mEvaluator = evaluator; in setEvaluator()
DValueAnimator.java314 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { in ofObject() argument
317 anim.setEvaluator(evaluator); in ofObject()
/frameworks/base/docs/html/guide/topics/graphics/
Dprop-animation.jd22 <li><a href="#type-evaluator">Using a TypeEvaluator</a></li>
270 <td>The default evaluator to calculate values for <code>int</code> properties.</td>
276 <td>The default evaluator to calculate values for <code>float</code> properties.</td>
282 <td>The default evaluator to calculate values for color properties that are represented
289 <td>An interface that allows you to create your own evaluator. If you are animating an
295 See the section about <a href="#type-evaluator">Using a TypeEvaluator</a> for more
296 information on how to write a custom evaluator.</td>
664 <h2 id="type-evaluator">Using a TypeEvaluator</h2>
667 evaluator by implementing the {@link android.animation.TypeEvaluator} interface. The types that
/frameworks/base/services/java/com/android/server/accessibility/
DScreenMagnifier.java1258 TypeEvaluator<MagnificationSpec> evaluator = new TypeEvaluator<MagnificationSpec>() { in MagnificationController() local
1282 evaluator, mSentMagnificationSpec, mCurrentMagnificationSpec); in MagnificationController()
1515 TypeEvaluator<Rect> evaluator = new TypeEvaluator<Rect>() { in Viewport() local
1532 evaluator, mViewportFrame.mBounds, mViewportFrame.mBounds); in Viewport()