HomeSort by relevance Sort by last modified time
    Searched refs:ofObject (Results 1 - 25 of 74) sorted by null

1 2 3

  /frameworks/support/transition/src/main/java/androidx/transition/
PropertyValuesHolderUtils.java 39 return PropertyValuesHolder.ofObject(property, null, path);
ObjectAnimatorUtils.java 29 return ObjectAnimator.ofObject(target, property, null, path);
ChangeClipBounds.java 108 ObjectAnimator animator = ObjectAnimator.ofObject(endValues.view, ViewUtils.CLIP_BOUNDS,
ChangeImageTransform.java 177 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
183 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
  /frameworks/base/core/java/android/animation/
KeyframeSet.java 132 public static KeyframeSet ofObject(Object... values) {
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]);
ObjectAnimator.java     [all...]
Keyframe.java 146 public static Keyframe ofObject(float fraction, Object value) {
162 public static Keyframe ofObject(float fraction) {
  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 72 Keyframe keyFrame = Keyframe.ofObject(0.0f);
80 Keyframe keyFrame = Keyframe.ofObject(0.0f, value);
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 353 anim = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null,
360 .ofObject(viewBounds, TOP_LEFT_PROPERTY, null, topLeftPath);
364 ObjectAnimator bottomRightAnimator = ObjectAnimator.ofObject(viewBounds,
378 anim = ObjectAnimator.ofObject(view, TOP_LEFT_ONLY_PROPERTY, null,
383 anim = ObjectAnimator.ofObject(view, BOTTOM_RIGHT_ONLY_PROPERTY, null,
397 positionAnimator = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null,
410 clipAnimator = ObjectAnimator.ofObject(view, "clipBounds", sRectEvaluator,
454 PropertyValuesHolder origin = PropertyValuesHolder.ofObject(
ChangeClipBounds.java 105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end);
ChangeImageTransform.java 191 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
197 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
Crossfade.java 243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds",
249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds",
  /developers/build/prebuilts/gradle/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 95 ValueAnimator animator = ValueAnimator.ofObject(new ArgbEvaluator(),
  /developers/samples/android/ui/transition/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 95 ValueAnimator animator = ValueAnimator.ofObject(new ArgbEvaluator(),
  /development/samples/browseable/CustomTransition/src/com.example.android.customtransition/
ChangeColor.java 95 ValueAnimator animator = ValueAnimator.ofObject(new ArgbEvaluator(),
  /frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
ChangeColor.java 94 ValueAnimator animator = ValueAnimator.ofObject(new ArgbEvaluator(),
  /packages/apps/DeskClock/src/com/android/deskclock/
BaseActivity.java 90 mAppColorAnimator = ValueAnimator.ofObject(ARGB_EVALUATOR, currentColor, color)
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
CurvedMotion.java 80 final ObjectAnimator anim = ObjectAnimator.ofObject(
  /packages/apps/Dialer/java/com/android/dialer/dialpadview/
PseudoEmergencyAnimator.java 55 ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
PathAnimations.java 174 mAnimator = ObjectAnimator.ofObject(this, "point", null, path);
180 mAnimator = ObjectAnimator.ofObject(this, POINT_PROPERTY,
CustomEvaluator.java 129 bounceAnim = ObjectAnimator.ofObject(ballHolder, "xY",
  /external/walt/ios/WALT/
MenuController.m 53 ofObject:(id)object
  /packages/apps/Settings/src/com/android/settings/widget/
HighlightablePreferenceGroupAdapter.java 164 final ValueAnimator fadeInLoop = ValueAnimator.ofObject(
193 final ValueAnimator colorAnimation = ValueAnimator.ofObject(
  /packages/apps/Launcher3/src/com/android/launcher3/views/
ScrimView.java 248 Keyframe frameTop = Keyframe.ofObject(0.6f, topBounds);
250 Keyframe frameBot = Keyframe.ofObject(1, mDragHandleBounds);
253 Keyframe.ofObject(0, mDragHandleBounds), frameTop, frameBot);
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DirectoryItemAnimator.java 128 mValueAnimator = ValueAnimator.ofObject(new ArgbEvaluator(), startColor, endColor);

Completed in 356 milliseconds

1 2 3