Home
last modified time | relevance | path

Searched refs:ofObject (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/core/java/android/animation/
DObjectAnimator.java610 public static ObjectAnimator ofObject(Object target, String propertyName, in ofObject() method in ObjectAnimator
637 public static ObjectAnimator ofObject(Object target, String propertyName, in ofObject() method in ObjectAnimator
639 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(propertyName, converter, path); in ofObject()
666 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, in ofObject() method in ObjectAnimator
701 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property, in ofObject() method in ObjectAnimator
703 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, evaluator, in ofObject()
728 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property, in ofObject() method in ObjectAnimator
730 PropertyValuesHolder pvh = PropertyValuesHolder.ofObject(property, converter, path); in ofObject()
796 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values)); in setObjectValues()
798 setValues(PropertyValuesHolder.ofObject(mPropertyName, in setObjectValues()
DKeyframeSet.java132 public static KeyframeSet ofObject(Object... values) { in ofObject() method in KeyframeSet
136 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f); in ofObject()
137 keyframes[1] = (ObjectKeyframe) Keyframe.ofObject(1f, values[0]); in ofObject()
139 keyframes[0] = (ObjectKeyframe) Keyframe.ofObject(0f, values[0]); in ofObject()
141 … keyframes[i] = (ObjectKeyframe) Keyframe.ofObject((float) i / (numKeyframes - 1), values[i]); in ofObject()
DKeyframe.java146 public static Keyframe ofObject(float fraction, Object value) { in ofObject() method in Keyframe
162 public static Keyframe ofObject(float fraction) { in ofObject() method in Keyframe
DPropertyValuesHolder.java403 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, in ofObject() method in PropertyValuesHolder
427 public static PropertyValuesHolder ofObject(String propertyName, in ofObject() method in PropertyValuesHolder
454 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject() method in PropertyValuesHolder
487 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() method in PropertyValuesHolder
512 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() method in PropertyValuesHolder
664 mKeyframes = KeyframeSet.ofObject(values); in setObjectValues()
DAnimatorInflater.java311 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
319 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH()
923 Keyframe.ofObject(fraction); in createNewKeyframe()
DValueAnimator.java427 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values) { in ofObject() method in ValueAnimator
518 setValues(PropertyValuesHolder.ofObject("", null, values)); in setObjectValues()
/frameworks/base/core/java/android/transition/
DChangeBounds.java357 anim = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null, in createAnimator()
364 .ofObject(viewBounds, TOP_LEFT_PROPERTY, null, topLeftPath); in createAnimator()
368 ObjectAnimator bottomRightAnimator = ObjectAnimator.ofObject(viewBounds, in createAnimator()
382 anim = ObjectAnimator.ofObject(view, TOP_LEFT_ONLY_PROPERTY, null, in createAnimator()
387 anim = ObjectAnimator.ofObject(view, BOTTOM_RIGHT_ONLY_PROPERTY, null, in createAnimator()
401 positionAnimator = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null, in createAnimator()
414 clipAnimator = ObjectAnimator.ofObject(view, "clipBounds", sRectEvaluator, in createAnimator()
458 PropertyValuesHolder origin = PropertyValuesHolder.ofObject( in createAnimator()
DChangeImageTransform.java172 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createNullAnimator()
178 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createMatrixAnimator()
DCrossfade.java243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds", in createAnimator()
249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds", in createAnimator()
DChangeClipBounds.java105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator()
DChangeTransform.java295 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
301 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
/frameworks/base/core/java/com/android/internal/transition/
DEpicenterTranslateClipReveal.java222 final ObjectAnimator animX = ObjectAnimator.ofObject(view, propX, evaluator, startX, endX); in createRectAnimator()
228 final ObjectAnimator animY = ObjectAnimator.ofObject(view, propY, evaluator, startY, endY); in createRectAnimator()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskViewTransform.java180 PropertyValuesHolder.ofObject(LTRB, Utilities.RECT_EVALUATOR, in applyToTaskView()
DDockState.java221 PropertyValuesHolder prop = PropertyValuesHolder.ofObject( in startAnimation()
/frameworks/base/services/core/java/com/android/server/wm/
DImmersiveModeConfirmation.java310 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, BGCOLOR); in onAttachedToWindow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DScreenPinningRequest.java198 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, bgColor); in onAttachedToWindow()
/frameworks/base/core/java/android/view/
DInsetsController.java513 mAnimator = ObjectAnimator.ofObject( in applyAnimation()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt2945 method public static android.animation.Keyframe ofObject(float, java.lang.Object);
2946 method public static android.animation.Keyframe ofObject(float);
3012 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,…
3013 …method public static android.animation.ObjectAnimator ofObject(java.lang.Object, java.lang.String,…
3014 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and…
3015 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, P>, and…
3016 …method public static android.animation.ObjectAnimator ofObject(T, android.util.Property<T, V>, and…
3046 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani…
3047 …method public static android.animation.PropertyValuesHolder ofObject(java.lang.String, android.ani…
3048 …method public static android.animation.PropertyValuesHolder ofObject(android.util.Property, androi…
[all …]
/frameworks/base/non-updatable-api/
Dcurrent.txt3326 method public static android.animation.Keyframe ofObject(float, Object);
3327 method public static android.animation.Keyframe ofObject(float);
3394 …method public static android.animation.ObjectAnimator ofObject(Object, String, android.animation.T…
3395 …method @NonNull public static android.animation.ObjectAnimator ofObject(Object, String, @Nullable …
3396 ….lang.SafeVarargs public static <T, V> android.animation.ObjectAnimator ofObject(T, android.util.P…
3397 …ng.SafeVarargs public static <T, V, P> android.animation.ObjectAnimator ofObject(T, android.util.P…
3398 …method @NonNull public static <T, V> android.animation.ObjectAnimator ofObject(T, @NonNull android…
3429 …method public static android.animation.PropertyValuesHolder ofObject(String, android.animation.Typ…
3430 …method public static android.animation.PropertyValuesHolder ofObject(String, android.animation.Typ…
3431 …method @java.lang.SafeVarargs public static <V> android.animation.PropertyValuesHolder ofObject(an…
[all …]
/frameworks/base/api/
Dcurrent.txt3326 method public static android.animation.Keyframe ofObject(float, Object);
3327 method public static android.animation.Keyframe ofObject(float);
3394 …method public static android.animation.ObjectAnimator ofObject(Object, String, android.animation.T…
3395 …method @NonNull public static android.animation.ObjectAnimator ofObject(Object, String, @Nullable …
3396 ….lang.SafeVarargs public static <T, V> android.animation.ObjectAnimator ofObject(T, android.util.P…
3397 …ng.SafeVarargs public static <T, V, P> android.animation.ObjectAnimator ofObject(T, android.util.P…
3398 …method @NonNull public static <T, V> android.animation.ObjectAnimator ofObject(T, @NonNull android…
3429 …method public static android.animation.PropertyValuesHolder ofObject(String, android.animation.Typ…
3430 …method public static android.animation.PropertyValuesHolder ofObject(String, android.animation.Typ…
3431 …method @java.lang.SafeVarargs public static <V> android.animation.PropertyValuesHolder ofObject(an…
[all …]
/frameworks/base/config/
Dboot-image-profile.txt246 HSPLandroid/animation/KeyframeSet;->ofObject([Ljava/lang/Object;)Landroid/animation/KeyframeSet;
402 HSPLandroid/animation/ValueAnimator;->ofObject(Landroid/animation/TypeEvaluator;[Ljava/lang/Object;…