Searched defs:ofObject (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java132 public static KeyframeSet ofObject(Object... values) { method in class:KeyframeSet
136 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f);
137 keyframes[1] = (ObjectKeyframe) Keyframe.ofObject(1f, values[0]);
139 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f, values[0]);
141 keyframes[i] = (ObjectKeyframe) Keyframe.ofObject((float) i / (numKeyframes - 1), values[i]);
H A DKeyframe.java146 public static Keyframe ofObject(float fraction, Object value) { method in class:Keyframe
162 public static Keyframe ofObject(float fraction) { method in class:Keyframe
H A DObjectAnimator.java610 public static ObjectAnimator ofObject(Object target, String propertyName, method in class:ObjectAnimator
637 public static ObjectAnimator ofObject(Object target, String propertyName, method in class:ObjectAnimator
639 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path);
666 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, method in class:ObjectAnimator
701 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property, method in class:ObjectAnimator
703 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator,
728 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property, method in class:ObjectAnimator
730 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path);
796 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values));
798 setValues(PropertyValuesHolder.ofObject(mPropertyNam
[all...]
H A DPropertyValuesHolder.java403 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, method in class:PropertyValuesHolder
427 public static PropertyValuesHolder ofObject(String propertyName, method in class:PropertyValuesHolder
454 public static <V> PropertyValuesHolder ofObject(Property property, method in class:PropertyValuesHolder
487 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, method in class:PropertyValuesHolder
512 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, method in class:PropertyValuesHolder
664 mKeyframes = KeyframeSet.ofObject(values);
H A DValueAnimator.java410 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { method in class:ValueAnimator
501 setValues(PropertyValuesHolder.ofObject("", null, values));

Completed in 260 milliseconds