Searched refs:AnticipateOvershootInterpolator (Results 1 - 6 of 6) sorted by relevance
/frameworks/base/core/java/android/view/animation/ |
H A D | AnticipateOvershootInterpolator.java | 31 import static com.android.internal.R.styleable.AnticipateOvershootInterpolator; 38 public class AnticipateOvershootInterpolator implements Interpolator, NativeInterpolatorFactory { class in inherits:Interpolator,NativeInterpolatorFactory 41 public AnticipateOvershootInterpolator() { method in class:AnticipateOvershootInterpolator 50 public AnticipateOvershootInterpolator(float tension) { method in class:AnticipateOvershootInterpolator 62 public AnticipateOvershootInterpolator(float tension, float extraTension) { method in class:AnticipateOvershootInterpolator 66 public AnticipateOvershootInterpolator(Context context, AttributeSet attrs) { method in class:AnticipateOvershootInterpolator 71 public AnticipateOvershootInterpolator(Resources res, Theme theme, AttributeSet attrs) { method in class:AnticipateOvershootInterpolator 74 a = theme.obtainStyledAttributes(attrs, AnticipateOvershootInterpolator, 0, 0); 76 a = res.obtainAttributes(attrs, AnticipateOvershootInterpolator);
|
H A D | AnimationUtils.java | 356 interpolator = new AnticipateOvershootInterpolator(res, theme, attrs);
|
/frameworks/base/libs/hwui/ |
H A D | Interpolator.h | 60 class ANDROID_API AnticipateOvershootInterpolator : public Interpolator { class in namespace:android::uirenderer 62 AnticipateOvershootInterpolator(float tension) : mTension(tension) {} function in class:android::uirenderer::AnticipateOvershootInterpolator
|
H A D | Interpolator.cpp | 57 float AnticipateOvershootInterpolator::interpolate(float t) {
|
/frameworks/base/core/jni/ |
H A D | com_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp | 44 return reinterpret_cast<jlong>(new AnticipateOvershootInterpolator(tension));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | DessertCaseView.java | 34 import android.view.animation.AnticipateOvershootInterpolator; 425 set1.setInterpolator(new AnticipateOvershootInterpolator());
|
Completed in 51 milliseconds