Searched refs:TimeInterpolator (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java19 import android.animation.TimeInterpolator;
26 public interface Interpolator extends TimeInterpolator {
27 // A new interface, TimeInterpolator, was introduced for the new android.animation
28 // package. This older Interpolator interface extends TimeInterpolator so that users of
30 // new classes that implement TimeInterpolator directly.
/frameworks/base/core/java/android/animation/
H A DTimeInterpolator.java23 public interface TimeInterpolator { interface
H A DKeyframe.java24 * next keyframe. Each keyframe also holds an optional {@link TimeInterpolator}
52 private TimeInterpolator mInterpolator = null;
208 public TimeInterpolator getInterpolator() {
218 public void setInterpolator(TimeInterpolator interpolator) {
H A DFloatKeyframeSet.java84 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
100 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
114 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
H A DIntKeyframeSet.java84 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
100 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
113 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
H A DKeyframeSet.java37 TimeInterpolator mInterpolator; // only used in the 2-keyframe case
188 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
199 final TimeInterpolator interpolator = mLastKeyframe.getInterpolator();
213 final TimeInterpolator interpolator = nextKeyframe.getInterpolator();
H A DLayoutTransition.java196 private static TimeInterpolator ACCEL_DECEL_INTERPOLATOR =
198 private static TimeInterpolator DECEL_INTERPOLATOR = new DecelerateInterpolator();
199 private static TimeInterpolator sAppearingInterpolator = ACCEL_DECEL_INTERPOLATOR;
200 private static TimeInterpolator sDisappearingInterpolator = ACCEL_DECEL_INTERPOLATOR;
201 private static TimeInterpolator sChangingAppearingInterpolator = DECEL_INTERPOLATOR;
202 private static TimeInterpolator sChangingDisappearingInterpolator = DECEL_INTERPOLATOR;
203 private static TimeInterpolator sChangingInterpolator = DECEL_INTERPOLATOR;
208 private TimeInterpolator mAppearingInterpolator = sAppearingInterpolator;
209 private TimeInterpolator mDisappearingInterpolator = sDisappearingInterpolator;
210 private TimeInterpolator mChangingAppearingInterpolato
[all...]
H A DAnimator.java180 public abstract void setInterpolator(TimeInterpolator value);
187 public TimeInterpolator getInterpolator() {
H A DValueAnimator.java40 * {@link ValueAnimator#setInterpolator(TimeInterpolator)}.</p>
106 private static final TimeInterpolator sDefaultInterpolator =
204 private TimeInterpolator mInterpolator = sDefaultInterpolator;
857 public void setInterpolator(TimeInterpolator value) {
871 public TimeInterpolator getInterpolator() {
H A DAnimatorSet.java125 private TimeInterpolator mInterpolator = null;
242 * Sets the TimeInterpolator for all current {@link #getChildAnimations() child animations}
251 public void setInterpolator(TimeInterpolator interpolator) {
256 public TimeInterpolator getInterpolator() {
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DEase.java19 import android.animation.TimeInterpolator;
27 public static final TimeInterpolator easeNone = new TimeInterpolator() {
35 public static final TimeInterpolator easeIn = new TimeInterpolator() {
40 public static final TimeInterpolator easeOut = new TimeInterpolator() {
45 public static final TimeInterpolator easeInOut = new TimeInterpolator() {
55 public static final TimeInterpolator easeI
[all...]
H A DTweener.java29 import android.animation.TimeInterpolator;
61 TimeInterpolator interpolator = null;
74 interpolator = (TimeInterpolator) value; // TODO: multiple interpolators?
H A DGlowPadView.java22 import android.animation.TimeInterpolator;
503 final TimeInterpolator interpolator = Ease.Cubic.easeOut;
/frameworks/base/core/java/android/transition/
H A DSlide.java21 import android.animation.TimeInterpolator;
38 private static final TimeInterpolator sAccelerator = new AccelerateInterpolator();
39 private static final TimeInterpolator sDecelerator = new DecelerateInterpolator();
H A DTransitionSet.java19 import android.animation.TimeInterpolator;
164 public TransitionSet setInterpolator(TimeInterpolator interpolator) {
H A DTransition.java21 import android.animation.TimeInterpolator;
101 TimeInterpolator mInterpolator = null;
223 public Transition setInterpolator(TimeInterpolator interpolator) {
236 public TimeInterpolator getInterpolator() {
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java25 import android.animation.TimeInterpolator;
45 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();
H A DScrollingTabContainerView.java22 import android.animation.TimeInterpolator;
69 private static final TimeInterpolator sAlphaInterpolator = new DecelerateInterpolator();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBarTransitions.java19 import android.animation.TimeInterpolator;
110 private final TimeInterpolator mInterpolator;
H A DNavigationBarView.java22 import android.animation.TimeInterpolator;
104 private TimeInterpolator mInterpolator;
H A DPhoneStatusBar.java31 import android.animation.TimeInterpolator;
1490 public Animator interpolator(TimeInterpolator ti, Animator a) {
1505 final TimeInterpolator mAccelerateInterpolator = new AccelerateInterpolator();
1506 final TimeInterpolator mDecelerateInterpolator = new DecelerateInterpolator();
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java21 import android.animation.TimeInterpolator;
87 private TimeInterpolator mInterpolator;
330 * @param interpolator The TimeInterpolator to be used for ensuing property animations.
333 public ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) {
344 public TimeInterpolator getInterpolator() {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetPager.java23 import android.animation.TimeInterpolator;
476 static class ZInterpolator implements TimeInterpolator {
H A DPagedView.java23 import android.animation.TimeInterpolator;
2419 private final TimeInterpolator mAlphaInterpolator = new DecelerateInterpolator(0.75f);
2548 final TimeInterpolator tInterpolator = new TimeInterpolator() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java21 import android.animation.TimeInterpolator;
557 final TimeInterpolator cubic = new DecelerateInterpolator(1.5f);

Completed in 382 milliseconds

12