/aosp_15_r20/frameworks/base/libs/hwui/ |
H A D | RootRenderNode.cpp | 29 explicit FinishAndInvokeListener(PropertyValuesAnimatorSet* anim) : mAnimator(anim) { in FinishAndInvokeListener() 55 for (auto& anim : mRunningVDAnimators) { in prepareTree() local 66 for (auto& anim : mPausedVDAnimators) { in prepareTree() local 93 for (auto& anim : mRunningVDAnimators) { in detachAnimators() local 97 for (auto& anim : mPausedVDAnimators) { in detachAnimators() local 108 for (auto& anim : mRunningVDAnimators) { in pauseAnimators() local 207 for (auto& anim : mRunningVDAnimators) { in pushStagingVectorDrawableAnimators() local 220 void RootRenderNode::addVectorDrawableAnimator(PropertyValuesAnimatorSet* anim) { in addVectorDrawableAnimator() 224 void RootRenderNode::detachVectorDrawableAnimator(PropertyValuesAnimatorSet* anim) { in detachVectorDrawableAnimator()
|
/aosp_15_r20/external/lottie/sample-compose/src/main/java/com/airbnb/lottie/sample/compose/examples/ |
H A D | AnimatableExamplesPage.kt | 62 val anim = rememberLottieAnimatable() in Example1() constant 75 val anim = rememberLottieAnimatable() in Example2() constant 104 val anim = rememberLottieAnimatable() in Example3() constant 176 val anim = rememberLottieAnimatable() in Example6() constant
|
/aosp_15_r20/frameworks/base/core/java/android/animation/ |
H A D | ObjectAnimator.java | 238 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofInt() local 284 ObjectAnimator anim = new ObjectAnimator(target, property); in ofInt() local 437 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofFloat() local 484 ObjectAnimator anim = new ObjectAnimator(target, property); in ofFloat() local 606 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofObject() local 662 ObjectAnimator anim = new ObjectAnimator(target, property); in ofObject() local 748 ObjectAnimator anim = new ObjectAnimator(); in ofPropertyValuesHolder() local 815 private boolean hasSameTargetAndProperties(@Nullable Animator anim) { in hasSameTargetAndProperties() 849 boolean shouldAutoCancel(AnimationHandler.AnimationFrameCallback anim) { in shouldAutoCancel() 988 final ObjectAnimator anim = (ObjectAnimator) super.clone(); in clone() local
|
H A D | AnimatorInflater.java | 413 private static void parseAnimatorFromTypeArray(ValueAnimator anim, in parseAnimatorFromTypeArray() 456 private static TypeEvaluator setupAnimatorForPath(ValueAnimator anim, in setupAnimatorForPath() 498 private static void setupObjectAnimator(ValueAnimator anim, TypedArray arrayObjectAnimator, in setupObjectAnimator() 573 private static void setupValues(ValueAnimator anim, TypedArray arrayAnimator, in setupValues() 652 Animator anim = null; in createAnimatorFromXml() local 1012 ObjectAnimator anim = new ObjectAnimator(); in loadObjectAnimator() local 1029 AttributeSet attrs, ValueAnimator anim, float pathErrorScale) in loadAnimator()
|
H A D | ValueAnimator.java | 434 ValueAnimator anim = new ValueAnimator(); in ofInt() local 451 ValueAnimator anim = new ValueAnimator(); in ofArgb() local 469 ValueAnimator anim = new ValueAnimator(); in ofFloat() local 483 ValueAnimator anim = new ValueAnimator(); in ofPropertyValuesHolder() local 511 ValueAnimator anim = new ValueAnimator(); in ofObject() local 1662 final ValueAnimator anim = (ValueAnimator) super.clone(); in clone() local
|
/aosp_15_r20/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | AnimatorPlaybackController.java | 55 public static AnimatorPlaybackController wrap(AnimatorSet anim, long duration) { in wrap() 77 AnimatorPlaybackController(AnimatorSet anim, long duration, ArrayList<Holder> childAnims) { in AnimatorPlaybackController() 304 Animator anim, BiConsumer<AnimatorListener, Animator> command) { in callListenerCommandRecursively() 312 private static void callAnimatorCommandRecursively(Animator anim, Consumer<Animator> command) { in callAnimatorCommandRecursively() 367 public final ValueAnimator anim; field in AnimatorPlaybackController.Holder 377 Holder(Animator anim, float globalDuration, SpringProperty springProperty) { in Holder() 395 static void addAnimationHoldersRecur(Animator anim, long globalDuration, in addAnimationHoldersRecur()
|
D | PendingAnimation.java | 57 public void add(Animator anim, TimeInterpolator interpolator, SpringProperty springProperty) { in add() 65 public void add(Animator anim, TimeInterpolator interpolator) { in add() 70 public void add(Animator anim) { in add() 88 Animator anim = ObjectAnimator.ofFloat(target, property, from, to); in addFloat() local 102 Animator anim = target.animateToValue(from, to); in addAnimatedFloat() local
|
D | AnimatedPropertySetter.java | 57 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, alpha); in setViewAlpha() local 70 ObjectAnimator anim = ObjectAnimator.ofArgb(view, VIEW_BACKGROUND_COLOR, color); in setViewBackgroundColor() local 82 Animator anim = ObjectAnimator.ofFloat(target, property, value); in setFloat() local 94 Animator anim = ObjectAnimator.ofInt(target, property, value); in setInt() local 107 Animator anim = ObjectAnimator.ofArgb(target, property, value); in setColor() local
|
/aosp_15_r20/system/core/healthd/ |
H A D | AnimationParser_test.cpp | 113 animation anim; in TEST() local 123 animation anim; in TEST() local 133 animation anim; in TEST() local 144 animation anim; in TEST() local 159 animation anim; in TEST() local
|
H A D | healthd_draw.cpp | 58 HealthdDraw::HealthdDraw(animation* anim) in HealthdDraw() 179 void HealthdDraw::draw_clock(const animation* anim) { in draw_clock() 208 void HealthdDraw::draw_percent(const animation* anim) { in draw_percent() 232 void HealthdDraw::draw_battery(const animation* anim) { in draw_battery() 258 std::unique_ptr<HealthdDraw> HealthdDraw::Create(animation *anim) { in Create()
|
/aosp_15_r20/cts/tests/tests/animation/src/android/animation/cts/ |
H A D | ObjectAnimatorTest.java | 322 final ObjectAnimator anim = ObjectAnimator.ofFloat(null, "dummyValue", 0f, 1f); in testNullObject() local 443 final ObjectAnimator anim = ObjectAnimator.ofFloat(target, "x", "y", path); in testOfFloat_Path() local 497 final ObjectAnimator anim = ObjectAnimator.ofInt(target, "x", "y", path); in testOfInt_Path() local 553 final ObjectAnimator anim = ObjectAnimator.ofMultiFloat(target, "position", path); in testOfMultiFloat_Path() local 613 final ObjectAnimator anim = ObjectAnimator.ofMultiFloat(target, "position", data); in testOfMultiFloat() local 654 final ObjectAnimator anim = ObjectAnimator.ofMultiInt(target, "position", path); in testOfMultiInt_Path() local 714 final ObjectAnimator anim = ObjectAnimator.ofMultiInt(target, "position", data); in testOfMultiInt() local 903 final ObjectAnimator anim = ObjectAnimator.ofFloat(target, "testValue", 100); in testCachedValues() local
|
H A D | ValueAnimatorTest.java | 158 final ValueAnimator anim = ValueAnimator.ofFloat(0f, 1f); in testListenerCallbackWithStartDelay() local 181 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); in testSetCurrentPlayTime() local 269 final ValueAnimator anim = ValueAnimator.ofFloat(0, 1).setDuration(duration); in testSetCurrentPlayTimeAfterStart() local 302 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); in testSetCurrentFraction() local 328 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); in testReverseRightAfterStart() local
|
/aosp_15_r20/packages/apps/Launcher3/quickstep/src/com/android/launcher3/ |
D | QuickstepTransitionManager.java | 408 protected void composeRecentsLaunchAnimator(@NonNull AnimatorSet anim, @NonNull View v, in composeRecentsLaunchAnimator() 437 private void composeIconLaunchAnimator(@NonNull AnimatorSet anim, @NonNull View v, in composeIconLaunchAnimator() 466 private void composeWidgetLaunchAnimator( in composeWidgetLaunchAnimator() 657 protected Runnable composeViewContentAnimator(@NonNull AnimatorSet anim, in composeViewContentAnimator() 1423 RectFSpringAnim anim = new RectFSpringAnim(useTaskbarHotseatParams in getClosingWindowAnimators() local 1576 private void addCujInstrumentation(Animator anim, int cuj) { in addCujInstrumentation() 1580 private void addCujInstrumentation(RectFSpringAnim anim, int cuj) { in addCujInstrumentation()
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/animation/ |
H A D | EventsTest.java | 81 public Canceler(Animator anim, FutureWaiter future) { in Canceler() 111 public Ender(Animator anim, FutureWaiter future) { in Ender() 134 public Pauser(Animator anim, FutureWaiter future) { in Pauser() 157 public Resumer(Animator anim, FutureWaiter future) { in Resumer()
|
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowContainerThumbnail.java | 109 void startAnimation(Transaction t, Animation anim) { in startAnimation() 113 void startAnimation(Transaction t, Animation anim, Point position) { in startAnimation() 124 private void onAnimationFinished(@AnimationType int type, AnimationAdapter anim) { in onAnimationFinished()
|
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/ |
H A D | DefaultSurfaceAnimator.java | 41 @NonNull Animation anim, @NonNull SurfaceControl leash, in buildSurfaceAnimation() 52 @NonNull Animation anim, @NonNull Runnable finishCallback, in buildSurfaceAnimation() 142 DefaultAnimationAdapter(@NonNull Animation anim, @NonNull SurfaceControl leash, in DefaultAnimationAdapter()
|
H A D | DefaultTransitionHandler.java | 232 final int anim = change.getRotationAnimation(); in getRotationAnimationHint() local 357 final int anim = getRotationAnimationHint(change, info, mDisplayController); in startAnimation() local 702 final Animator anim = anims.get(i); in mergeAnimation() local 711 final ScreenRotationAnimation anim = new ScreenRotationAnimation(mContext, in startRotationAnimation() local
|
/aosp_15_r20/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | CannedAnimationCoordinator.kt | 76 val anim = AnimatorSet() in <lambda>() constant 81 addUpdateListener { anim -> currentAnim?.setPlayFraction(anim.animatedFraction) } in <lambda>() method
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/ |
H A D | DrawableHolder.java | 75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue); in addAnimTo() local 115 private DrawableHolder addAnimation(ObjectAnimator anim, boolean overwrite) { in addAnimation() 149 ObjectAnimator anim = mNeedToStart.get(i); in startAnimations() local
|
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/core/core-animation/1.0.0/androidx.core_core-animation/android_common/aar/ |
D | androidx.core_core-animation.jar | androidx/
androidx/core/
androidx/core/animation/
androidx/core/animation/AccelerateDecelerateInterpolator ... |
D | classes.jar | androidx/
androidx/core/
androidx/core/animation/
androidx/core/animation/AccelerateDecelerateInterpolator ... |
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
H A D | DraggableConstraintLayout.java | 244 ValueAnimator anim = createSwipeDismissAnimation(); in onTouch() local 344 ValueAnimator anim = ValueAnimator.ofFloat(0, 1); in createSwipeDismissAnimation() local 373 ValueAnimator anim = ValueAnimator.ofFloat(0, 1); in createSwipeReturnAnimation() local
|
/aosp_15_r20/external/skia/modules/skottie/tests/ |
H A D | Text.cpp | 112 auto anim = Animation::Builder() in DEF_TEST() local 221 auto anim = Animation::Builder() in DEF_TEST() local 287 auto anim = Animation::Builder() in DEF_TEST() local
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/helper/ |
H A D | ItemTouchHelper.java | 666 void postDispatchSwipe(final RecoverAnimation anim, final int swipeDir) { in postDispatchSwipe() 880 final RecoverAnimation anim = mRecoverAnimations.get(i); in endRecoverAnimation() local 1011 final RecoverAnimation anim = mRecoverAnimations.get(i); in findChildView() local 1122 final RecoverAnimation anim = mRecoverAnimations.get(i); in findAnimation() local 1928 final ItemTouchHelper.RecoverAnimation anim = recoverAnimationList.get(i); in onDraw() local 1947 final ItemTouchHelper.RecoverAnimation anim = recoverAnimationList.get(i); in onDrawOver() local 1960 final RecoverAnimation anim = recoverAnimationList.get(i); in onDrawOver() local
|
/aosp_15_r20/cts/tests/tests/view/src/android/view/animation/cts/ |
H A D | AnimationTest.java | 252 final Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); in testRepeatAnimation() local 414 Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha); in testRunAccelerateAlpha() local 430 final Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha); in testGetTransformation() local
|