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

1 2 3 4 5

  /frameworks/base/core/java/android/view/animation/
Interpolator.java 22 * An interpolator defines the rate of change of an animation. This allows
26 public interface Interpolator extends TimeInterpolator {
28 // package. This older Interpolator interface extends TimeInterpolator so that users of
29 // the new Animator-based animations can use either the old Interpolator implementations or
LinearInterpolator.java 23 * An interpolator where the rate of change is constant
26 public class LinearInterpolator implements Interpolator {
AccelerateDecelerateInterpolator.java 23 * An interpolator where the rate of change starts and ends slowly but
27 public class AccelerateDecelerateInterpolator implements Interpolator {
BounceInterpolator.java 24 * An interpolator where the change bounces at the end.
26 public class BounceInterpolator implements Interpolator {
CycleInterpolator.java 28 public class CycleInterpolator implements Interpolator {
AccelerateInterpolator.java 24 * An interpolator where the rate of change starts out slowly and
28 public class AccelerateInterpolator implements Interpolator {
AnticipateInterpolator.java 24 * An interpolator where the change starts backward then flings forward.
26 public class AnticipateInterpolator implements Interpolator {
35 * no anticipation and the interpolator becomes a simple
36 * acceleration interpolator.
DecelerateInterpolator.java 24 * An interpolator where the rate of change starts out quickly and
28 public class DecelerateInterpolator implements Interpolator {
OvershootInterpolator.java 24 * An interpolator where the change flings forward and overshoots the last value
27 public class OvershootInterpolator implements Interpolator {
36 * no overshoot and the interpolator becomes a simple
37 * deceleration interpolator.
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
Animation.java 19 import android.view.animation.Interpolator;
37 // Before onCalculate(float) is called, There is an optional interpolator which
38 // can change the progress value. The interpolator can be set by
39 // setInterpolator(Interpolator). If the interpolator is used, the value passed
54 private Interpolator mInterpolator;
56 public void setInterpolator(Interpolator interpolator) {
57 mInterpolator = interpolator;
85 Interpolator i = mInterpolator
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CaptureAnimation.java 22 import android.view.animation.Interpolator;
30 private static final Interpolator sZoomOutInterpolator =
32 private static final Interpolator sZoomInInterpolator =
34 private static final Interpolator sSlideInterpolator =
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
ProgressBarModifier.java 20 import android.view.animation.Interpolator;
32 private static class ZeroInterpolator implements Interpolator {
  /cts/tests/tests/graphics/src/android/graphics/cts/
InterpolatorTest.java 20 import android.graphics.Interpolator;
21 import android.graphics.Interpolator.Result;
30 Interpolator i = new Interpolator(10);
34 i = new Interpolator(15, 20);
41 Interpolator interpolator = new Interpolator(10); local
42 assertEquals(DEFAULT_KEYFRAME_COUNT, interpolator.getKeyFrameCount());
43 interpolator.reset(expected)
52 Interpolator interpolator = new Interpolator(10); local
59 Interpolator interpolator = new Interpolator(1); local
98 Interpolator interpolator = new Interpolator(1); local
139 Interpolator interpolator = new Interpolator(1, 3); local
172 Interpolator interpolator = new Interpolator(1); local
    [all...]
Interpolator_ResultTest.java 20 import android.graphics.Interpolator.Result;
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
Zoomer.java 22 import android.view.animation.Interpolator;
30 * The interpolator, used for making zooms animate 'naturally.'
32 private Interpolator mInterpolator;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimation.java 4 import android.view.animation.Interpolator;
19 private Interpolator interpolator; field in class:ShadowAnimation
68 public void setInterpolator(Interpolator interpolator) {
69 this.interpolator = interpolator;
73 public Interpolator getInterpolator() {
74 return interpolator;
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 21 public class Interpolator {
23 public Interpolator(int valueCount) {
29 public Interpolator(int valueCount, int frameCount) {
36 * Reset the Interpolator to have the specified number of values and an
45 * Reset the Interpolator to have the specified number of values and
101 * Set a repeat count (which may be fractional) for the interpolator, and
102 * whether the interpolator should mirror its repeats. The default settings
132 * Interpolator. Based on the SystemClock.uptimeMillis() clock
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 25 public class Interpolator extends AllocationGuard {
31 public Interpolator() {
MovementComponent.java 26 private static Interpolator sInterpolator = new Interpolator();
  /packages/apps/Launcher3/src/com/android/launcher3/
RampUpScroller.java 21 import android.view.animation.Interpolator;
27 private final Interpolator mInterpolator;
SmoothPagedView.java 21 import android.view.animation.Interpolator;
36 private Interpolator mScrollInterpolator;
38 public static class OvershootInterpolator implements Interpolator {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SoftLandingInterpolator.java 20 import android.view.animation.Interpolator;
24 * An interpolator where the rate of change starts out quickly and
28 public class SoftLandingInterpolator implements Interpolator {
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ListFlipper.java 26 import android.view.animation.Interpolator;
95 private Interpolator accelerator = new AccelerateInterpolator();
96 private Interpolator decelerator = new DecelerateInterpolator();
  /packages/apps/Launcher2/src/com/android/launcher2/
SmoothPagedView.java 21 import android.view.animation.Interpolator;
36 private Interpolator mScrollInterpolator;
38 public static class OvershootInterpolator implements Interpolator {
  /cts/tests/tests/view/src/android/view/animation/cts/
DecelerateInterpolatorTest.java 32 import android.view.animation.Interpolator;
72 // android:interpolator="@android:anim/decelerate_interpolator"
82 Interpolator interpolator = new DecelerateInterpolator(1.0f); local
83 anim.setInterpolator(interpolator);
117 interpolator = new DecelerateInterpolator(1.5f);
118 anim.setInterpolator(interpolator);
156 Interpolator interpolator1 = new DecelerateInterpolator(1.0f);
158 Interpolator interpolator2 = new DecelerateInterpolator(2.0f);

Completed in 1429 milliseconds

1 2 3 4 5