HomeSort by relevance Sort by last modified time
    Searched defs:Point (Results 1 - 25 of 28) sorted by null

1 2

  /external/v8/test/mjsunit/
debug-references.js 85 // Evaluate Point.
87 '"arguments":{"expression":"Point"}}';
89 assertTrue(response.success, "Evaluation of Point failed");
109 function Point(x, y) { this.x_ = x; this.y_ = y;}
110 p = new Point(0,0);
111 q = new Point(1,2);
debug-backtrace-text.js 31 function Point(x, y) {
36 Point.prototype.distanceTo = function(p) {
41 p1 = new Point(1,1);
42 p2 = new Point(2,2);
53 return new Point(x, y);
79 // 0: Call distance on Point where distance is a property on the prototype
80 // 1: Call distance on Point where distance is a direct property
83 assertEquals("#<a Point>.distanceTo(p=#<a Point>)", exec_state.frame(0).invocationText());
84 assertEquals("#<a Point>.distanceTo(p=#<a Point>)", exec_state.frame(1).invocationText())
    [all...]
mirror-object.js 156 function Point(x,y) {
165 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
  /external/chromium/base/gfx/
point.cc 5 #include "base/gfx/point.h"
15 Point::Point() : x_(0), y_(0) {
18 Point::Point(int x, int y) : x_(x), y_(y) {
22 Point::Point(DWORD point) {
23 POINTS points = MAKEPOINTS(point);
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y)
    [all...]
point.h 14 typedef struct tagPOINT POINT;
22 // A point has an x and y coordinate.
24 class Point {
26 Point();
27 Point(int x, int y);
29 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
32 explicit Point(DWORD point);
33 explicit Point(const POINT& point)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebPoint.h 79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
92 operator gfx::Point() const
94 return gfx::Point(x, y);
  /frameworks/base/graphics/java/android/graphics/
Point.java 21 * Point holds two integer coordinates
23 public class Point {
27 public Point() {}
29 public Point(int x, int y) {
34 public Point(Point src) {
40 * Set the point's x and y coordinates
48 * Negate the point's coordinates
56 * Offset the point's coordinates by dx, dy
64 * Returns true if the point's coordinates equal (x,y
    [all...]
  /frameworks/base/include/ui/
Point.h 24 class Point
33 // Default constructor doesn't initialize the Point
34 inline Point() {
36 inline Point(int x, int y) : x(x), y(y) {
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& rhs)
    [all...]
  /system/core/libacc/tests/data/
typedef.c 2 typedef struct Point {
5 } Point;
7 void add(Point* result, Point* a, Point* b) {
12 void print(Point* p) {
16 void set(Point* p, int x, int y) {
29 Point a, b, c;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
Point.java 21 * Mutable point.
23 public class Point {
26 public Point(int x, int y) {
31 public Point(Point p) {
36 /** Sets the point to the given coordinates. */
42 /** Returns a new instance of a point with the same values. */
43 public Point copy() {
44 return new Point(x, y);
48 * Offsets this point by adding the given x,y deltas to the x,y coordinates
    [all...]
  /external/libffi/testsuite/libffi.call/
pyobjc-tc.c 10 typedef struct Point {
13 } Point;
21 Point o;
25 int doit(int o, char* s, Point p, Rect r, int last)
47 point_type.size = 0; /*sizeof(Point);*/
48 point_type.alignment = 0; /*__alignof__(Point);*/
91 Point p = { 1.0, 2.0 };
  /external/stlport/test/unit/
deque_test.cpp 232 struct Point {
236 struct PointEx : public Point {
238 PointEx(const Point&) : builtFromBase(true) {}
265 deque<Point> d1(1);
vector_test.cpp 403 struct Point {
407 struct PointEx : public Point {
409 PointEx(const Point&) : builtFromBase(true) {}
436 vector<Point> v1(1);
  /ndk/sources/android/stlport/test/unit/
deque_test.cpp 232 struct Point {
236 struct PointEx : public Point {
238 PointEx(const Point&) : builtFromBase(true) {}
265 deque<Point> d1(1);
vector_test.cpp 403 struct Point {
407 struct PointEx : public Point {
409 PointEx(const Point&) : builtFromBase(true) {}
436 vector<Point> v1(1);
  /external/chromium/third_party/icu/source/common/
ubidiimp.h 176 typedef struct Point {
179 } Point;
186 Point *points; /* pointer to array of points */
  /external/icu4c/common/
ubidiimp.h 176 typedef struct Point {
179 } Point;
186 Point *points; /* pointer to array of points */
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 463 milliseconds

1 2