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

/frameworks/av/media/libstagefright/wifi-display/sink/
H A DLinearRegression.h37 struct Point { struct in struct:android::LinearRegression
43 Point *mHistory;
/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
74 if (o instanceof Point) {
75 Point p = (Point) o;
86 return "Point("
[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) {
204 ArrayList<Point> points = mPointCloud;
208 Point point = points.get(i);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java59 private static class Point { class in class:EventSenderImpl
63 public Point(int x, int y) { method in class:EventSenderImpl.Point
75 private Point createViewPointFromContentCoordinates(int x, int y) {
76 return new Point(Math.round(x * mWebView.getScale()) - mWebView.getScrollX(),
82 private Point mPoint;
88 public TouchPoint(int id, Point point) {
109 public void move(Point point) {
145 private Point mMousePoint;

Completed in 769 milliseconds