Searched defs:Point (Results 1 - 6 of 6) 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/base/graphics/java/android/graphics/
H A DPoint.java26 * Point holds two integer coordinates
28 public class Point implements Parcelable { class in inherits:Parcelable
32 public Point() {} method in class:Point
34 public Point(int x, int y) { method in class:Point
39 public Point(Point src) { method in class:Point
80 Point point = (Point) o;
97 return "Point(" + x + ", " + y + ")";
124 public static final Parcelable.Creator<Point> CREATO
[all...]
/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 1285 milliseconds