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

/frameworks/base/graphics/java/android/graphics/
H A DPoint.java21 * Point holds two integer coordinates
23 public class Point { class
27 public Point() {} method in class:Point
29 public Point(int x, int y) { method in class:Point
34 public Point(Point src) { method in class:Point
71 if (o instanceof Point) {
72 Point p = (Point) o;
83 return "Point("
[all...]
/frameworks/base/include/ui/
H A DPoint.h24 class Point class in namespace:android
33 // Default constructor doesn't initialize the Point
34 inline Point() { function in class:android::Point
36 inline Point(int x, int y) : x(x), y(y) { function in class:android::Point
39 inline bool operator == (const Point& rhs) const {
42 inline bool operator != (const Point& rhs) const {
52 bool operator < (const Point& rhs) const {
56 inline Point& operator - () {
62 inline Point& operator += (const Point
[all...]
/frameworks/base/awt/java/awt/
H A DPoint.java28 * The Point class represents a point location with coordinates X, Y in current
33 public class Point extends Point2D implements Serializable { class in inherits:Point2D,Serializable
41 * The X coordinate of Point.
46 * The Y coordinate of Point.
54 public Point() { method in class:Point
62 * the X coordinate of Point.
64 * the Y coordinate of Point.
66 public Point(int x, int y) { method in class:Point
74 * the Point object giving the coordinates of the new point.
76 public Point(Poin method in class:Point
[all...]

Completed in 739 milliseconds