Home
last modified time | relevance | path

Searched defs:PathInterpolator (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/animation/
DPathInterpolator.java51 public class PathInterpolator extends BaseInterpolator implements NativeInterpolator { class
66 public PathInterpolator(@NonNull Path path) { in PathInterpolator() method in PathInterpolator
77 public PathInterpolator(float controlX, float controlY) { in PathInterpolator() method in PathInterpolator
90 public PathInterpolator(float controlX1, float controlY1, float controlX2, float controlY2) { in PathInterpolator() method in PathInterpolator
94 public PathInterpolator(Context context, AttributeSet attrs) { in PathInterpolator() method in PathInterpolator
99 public PathInterpolator(Resources res, @Nullable Theme theme, @NonNull AttributeSet attrs) { in PathInterpolator() method in PathInterpolator
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPathInterpolatorBuilder.java110 private static class PathInterpolator extends BaseInterpolator { class in PathInterpolatorBuilder
114 private PathInterpolator(float[] xs, float[] ys) { in PathInterpolator() method in PathInterpolatorBuilder.PathInterpolator
/frameworks/base/libs/hwui/
DInterpolator.h112 explicit PathInterpolator(std::vector<float>&& x, std::vector<float>&& y) : mX(x), mY(y) {} in PathInterpolator() function