/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 610 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()
|
D | KeyframeSet.java | 132 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()
|
D | Keyframe.java | 146 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
|
D | PropertyValuesHolder.java | 403 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()
|
D | AnimatorInflater.java | 311 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()
|
D | ValueAnimator.java | 427 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/ |
D | ChangeBounds.java | 357 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()
|
D | ChangeImageTransform.java | 172 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createNullAnimator() 178 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY, in createMatrixAnimator()
|
D | Crossfade.java | 243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds", in createAnimator() 249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds", in createAnimator()
|
D | ChangeClipBounds.java | 105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator()
|
D | ChangeTransform.java | 295 PropertyValuesHolder valuesProperty = PropertyValuesHolder.ofObject( in createTransformAnimator() 301 PropertyValuesHolder translationProperty = PropertyValuesHolder.ofObject( in createTransformAnimator()
|
/frameworks/base/core/java/com/android/internal/transition/ |
D | EpicenterTranslateClipReveal.java | 222 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/ |
D | TaskViewTransform.java | 180 PropertyValuesHolder.ofObject(LTRB, Utilities.RECT_EVALUATOR, in applyToTaskView()
|
D | DockState.java | 221 PropertyValuesHolder prop = PropertyValuesHolder.ofObject( in startAnimation()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ImmersiveModeConfirmation.java | 310 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, BGCOLOR); in onAttachedToWindow()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | ScreenPinningRequest.java | 198 mColorAnim = ValueAnimator.ofObject(new ArgbEvaluator(), 0, bgColor); in onAttachedToWindow()
|
/frameworks/base/core/java/android/view/ |
D | InsetsController.java | 513 mAnimator = ObjectAnimator.ofObject( in applyAnimation()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 2945 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/ |
D | current.txt | 3326 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/ |
D | current.txt | 3326 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/ |
D | boot-image-profile.txt | 246 HSPLandroid/animation/KeyframeSet;->ofObject([Ljava/lang/Object;)Landroid/animation/KeyframeSet; 402 HSPLandroid/animation/ValueAnimator;->ofObject(Landroid/animation/TypeEvaluator;[Ljava/lang/Object;…
|