HomeSort by relevance Sort by last modified time
    Searched defs:animation (Results 1 - 25 of 341) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/animation/
TimeInterpolator.java 17 package android.animation;
20 * A time interpolator defines the rate of change of an animation. This allows animations
26 * Maps a value representing the elapsed fraction of an animation to a value that represents
28 * value of an animation to derive the animated value at the current elapsed animation time.
31 * in the animation where 0 represents the start and 1.0 represents
TypeEvaluator.java 17 package android.animation;
22 * custom evaluators for types that are not automatically understood and used by the animation
FloatEvaluator.java 17 package android.animation;
IntEvaluator.java 17 package android.animation;
  /frameworks/base/core/java/android/view/animation/
Interpolator.java 17 package android.view.animation;
19 import android.animation.TimeInterpolator;
22 * An interpolator defines the rate of change of an animation. This allows
23 * the basic animation effects (alpha, scale, translate, rotate) to be
27 // A new interface, TimeInterpolator, was introduced for the new android.animation
AccelerateDecelerateInterpolator.java 17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
BaseInterpolator.java 17 package android.view.animation;
BounceInterpolator.java 17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
LinearInterpolator.java 17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetActivity.java 1 package android.animation;
BasicAnimatorActivity.java 16 package android.animation;
FutureWaiter.java 16 package android.animation;
ValueAnimatorEventsTest.java 16 package android.animation;
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewPropertyAnimationFactory.java 1 package com.bumptech.glide.request.animation;
10 private ViewPropertyAnimation<R> animation; field in class:ViewPropertyAnimationFactory
21 * {@link com.bumptech.glide.request.animation.ViewPropertyAnimation.Animator} provided in the constructor.
28 if (animation == null) {
29 animation = new ViewPropertyAnimation<R>(animator);
32 return animation;
GlideAnimationFactory.java 1 package com.bumptech.glide.request.animation;
4 * A factory class that can produce different {@link com.bumptech.glide.request.animation.GlideAnimation}s based on the
11 * Returns a new {@link com.bumptech.glide.request.animation.GlideAnimation}.
13 * @param isFromMemoryCache True if this will be an animation for a resource that was loaded from the memory cache.
  /cts/tests/tests/animation/src/android/animation/cts/
ButtonViewActivity.java 17 package android.animation.cts;
AnimatorListenerAdapterTest.java 16 package android.animation.cts;
18 import android.animation.AnimatorListenerAdapter;
  /cts/tests/tests/view/src/android/view/animation/cts/
AlphaAnimationTest.java 17 package android.view.animation.cts;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Transformation;
61 AlphaAnimation animation = new AlphaAnimation(mContext, null); local
62 assertFalse(animation.willChangeBounds());
67 AlphaAnimation animation = new AlphaAnimation(0.0f, 0.5f); local
68 assertFalse(animation.willChangeTransformationMatrix());
73 MyAlphaAnimation animation = new MyAlphaAnimation(0.0f, 1.0f); local
77 animation.applyTransformation(0.0f, transformation);
80 animation.applyTransformation(0.5f, transformation)
    [all...]
  /external/ImageMagick/Magick++/demo/
gravity.cpp 5 // Demo of text annotation with gravity. Produces an animation showing
39 list<Image> animation; local
69 animation.push_back( pic );
72 writeImages( animation.begin(), animation.end(), "gravity_out.miff" );
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationTest.java 4 import android.view.animation.Animation;
5 import android.view.animation.LinearInterpolator;
6 import android.view.animation.Transformation;
20 private TestAnimation animation; field in class:AnimationTest
26 animation = new TestAnimation();
27 shadow = shadowOf(animation);
29 animation.setAnimationListener(listener);
35 animation.start();
44 animation.cancel()
    [all...]
  /frameworks/base/core/java/com/android/internal/view/animation/
HasNativeInterpolator.java 17 package com.android.internal.view.animation;
NativeInterpolatorFactory.java 17 package com.android.internal.view.animation;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationCreator.java 17 package com.android.settingslib.animation;
19 import android.view.animation.Interpolator;
22 * An interface which can create animations when starting an appear animation with
  /frameworks/support/compat/src/main/java/androidx/core/view/animation/
PathInterpolatorCompat.java 17 package androidx.core.view.animation;
21 import android.view.animation.Interpolator;
22 import android.view.animation.PathInterpolator;
  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
FloatValueHolder.java 17 package androidx.dynamicanimation.animation;
22 * be performed on a FloatValueHolder instance. During each frame of the animation, the
24 * obtain the up-to-date animation value via {@link FloatValueHolder#getValue()}.
28 * // Create a fling animation with an initial velocity of 5000 (pixel/s) and an initial position

Completed in 416 milliseconds

1 2 3 4 5 6 7 8 91011>>