Searched defs:Point (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DPoint.java19 public class Point { class
24 public Point(float x, float y) { method in class:Point
30 public Point(float x, float y, long timeOffsetNano) { method in class:Point
36 public boolean equals(Point p) {
40 public float dist(Point a) {
48 public float crossProduct(Point a, Point b) {
56 public float dotProduct(Point a, Point b) {
66 public float getAngle(Point
[all...]
/frameworks/native/include/ui/
H A DPoint.h25 class Point : public LightFlattenablePod<Point> class in namespace:android
34 // Default constructor doesn't initialize the Point
35 inline Point() { function in class:android::Point
37 inline Point(int _x, int _y) : x(_x), y(_y) { function in class:android::Point
40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point
[all...]
/frameworks/native/libs/ui/include/ui/
H A DPoint.h25 class Point : public LightFlattenablePod<Point> class in namespace:android
34 // Default constructor doesn't initialize the Point
35 inline Point() { function in class:android::Point
37 inline Point(int _x, int _y) : x(_x), y(_y) { function in class:android::Point
40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point
[all...]
/frameworks/native/libs/ui/include_vndk/ui/
H A DPoint.h25 class Point : public LightFlattenablePod<Point> class in namespace:android
34 // Default constructor doesn't initialize the Point
35 inline Point() { function in class:android::Point
37 inline Point(int _x, int _y) : x(_x), y(_y) { function in class:android::Point
40 inline bool operator == (const Point& rhs) const {
43 inline bool operator != (const Point& rhs) const {
53 bool operator < (const Point& rhs) const {
57 inline Point& operator - () {
63 inline Point
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java27 * Point holds two integer coordinates
29 public class Point implements Parcelable { class in inherits:Parcelable
33 public Point() {} method in class:Point
35 public Point(int x, int y) { method in class:Point
40 public Point(Point src) { method in class:Point
81 Point point = (Point) o;
98 return "Point(" + x + ", " + y + ")";
140 public static final Parcelable.Creator<Point> CREATO
[all...]
H A DColorSpace.java3739 private final List<Point> mPoints = new ArrayList<>(0);
3927 mPoints.add(new Point(colorSpace, new float[] { r, g, b }, pointColor));
3984 for (final Point point : mPoints) {
4447 private static class Point { class in class:ColorSpace.Renderer
4452 Point(@NonNull ColorSpace colorSpace, method in class:ColorSpace.Renderer.Point
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java25 public class Point { class
30 public Point() { method in class:Point
33 public Point(float x, float y) { method in class:Point
48 public Point plus(float x, float y) {
49 return new Point(this.x + x, this.y + y);
52 public Point plus(Point point) {
56 public Point minus(float x, float y) {
57 return new Point(this.x - x, this.y - y);
60 public Point minu
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.h28 class Point { class in namespace:android::filterfw
30 Point() : x_(0.0f), y_(0.0f) {} function in class:android::filterfw::Point
31 Point(float x, float y) : x_(x), y_(y) {} function in class:android::filterfw::Point
38 static float Distance(const Point& p0, const Point& p1);
41 Point operator+(const Point& other) const;
42 Point operator-(const Point& other) const;
43 Point operato
[all...]
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.h28 class Point { class in namespace:android::filterfw
30 Point() : x_(0.0f), y_(0.0f) {} function in class:android::filterfw::Point
31 Point(float x, float y) : x_(x), y_(y) {} function in class:android::filterfw::Point
38 static float Distance(const Point& p0, const Point& p1);
41 Point operator+(const Point& other) const;
42 Point operator-(const Point& other) const;
43 Point operato
[all...]

Completed in 507 milliseconds