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.java49 public class PathInterpolator extends BaseInterpolator implements NativeInterpolatorFactory { class
64 public PathInterpolator(Path path) { in PathInterpolator() method in PathInterpolator
75 public PathInterpolator(float controlX, float controlY) { in PathInterpolator() method in PathInterpolator
88 public PathInterpolator(float controlX1, float controlY1, float controlX2, float controlY2) { in PathInterpolator() method in PathInterpolator
92 public PathInterpolator(Context context, AttributeSet attrs) { in PathInterpolator() method in PathInterpolator
97 public PathInterpolator(Resources res, Theme theme, 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