Searched refs:ofObject (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/android/animation/ |
H A D | KeyframeSet.java | 125 public static KeyframeSet ofObject(Object... values) { method in class:KeyframeSet 129 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f); 130 keyframes[1] = (ObjectKeyframe) Keyframe.ofObject(1f, values[0]); 132 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f, values[0]); 134 keyframes[i] = (ObjectKeyframe) Keyframe.ofObject((float) i / (numKeyframes - 1), values[i]);
|
H A D | Keyframe.java | 137 public static Keyframe ofObject(float fraction, Object value) { method in class:Keyframe 153 public static Keyframe ofObject(float fraction) { method in class:Keyframe
|
H A D | ObjectAnimator.java | 258 public static ObjectAnimator ofObject(Object target, String propertyName, method in class:ObjectAnimator 281 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, method in class:ObjectAnimator 350 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values)); 352 setValues(PropertyValuesHolder.ofObject(mPropertyName,
|
H A D | PropertyValuesHolder.java | 201 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, method in class:PropertyValuesHolder 221 public static <V> PropertyValuesHolder ofObject(Property property, method in class:PropertyValuesHolder 360 mKeyframeSet = KeyframeSet.ofObject(values);
|
H A D | ValueAnimator.java | 316 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { method in class:ValueAnimator 402 setValues(PropertyValuesHolder.ofObject("", null, values));
|
/frameworks/base/services/java/com/android/server/accessibility/ |
H A D | ScreenMagnifier.java | 984 mTransformationAnimator = ObjectAnimator.ofObject(this, property,
|
Completed in 167 milliseconds