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

/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.java24 * Point holds two integer coordinates
26 public class Point implements Parcelable { class in inherits:Parcelable
30 public Point() {} method in class:Point
32 public Point(int x, int y) { method in class:Point
37 public Point(Point src) { method in class:Point
78 Point point = (Point) o;
95 return "Point(" + x + ", " + y + ")";
117 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...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DPointCloud.java33 private ArrayList<Point> mPointCloud = new ArrayList<Point>();
106 class Point { class in class:PointCloud
111 public Point(float x2, float y2, float r) { method in class:PointCloud.Point
157 mPointCloud.add(new Point(x, y, r));
178 public int getAlphaForPoint(Point point) {
203 ArrayList<Point> points = mPointCloud;
207 Point point = points.get(i);

Completed in 546 milliseconds