HomeSort by relevance Sort by last modified time
    Searched defs:Point (Results 1 - 25 of 50) 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("#<Point>.distanceTo(p=#<Point>)", exec_state.frame(0).invocationText());
84 assertEquals("#<Point>.distanceTo(p=#<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/clang/test/FixIt/
no-typo.c 4 } Point;
6 point p1; // expected-error{{unknown type name 'point'}}
fixit-errors.c 15 struct Point {
19 struct Point *get_origin();
typo.c 6 struct Point {
11 struct Point top_left, // expected-note{{'top_left' declared here}}
  /external/clang/test/Index/
complete-tabs.c 2 struct Point { int x, y; };
4 void f(struct Point *p) {
  /external/clang/test/CodeCompletion/
member-access.c 1 struct Point {
7 void test(struct Point *p) {
macros.c 5 struct Point {
10 void test(struct Point *p) {
  /external/clang/test/SemaCXX/
c99.cpp 5 struct Point { int x; int y; };
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature, accepted in C++ as an extension}}
tag-ambig.cpp 4 typedef struct Point Point;
7 class Point;
15 struct Point { };
16 virtual bool testMethod (Test::Point& p) = 0;
arrow-operator.cpp 29 class Point {};
30 class Line_Segment{ public: Line_Segment(const Point&){} };
31 class Node { public: Point Location(){ Point p; return p; } };
  /external/clang/test/Analysis/
fields.c 23 } Point;
25 Point getit(void);
27 Point p;
  /external/webkit/Source/WebKit/chromium/public/
WebPoint.h 39 #include <ui/gfx/point.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 24 * Point holds two integer coordinates
26 public class Point implements Parcelable {
30 public Point() {}
32 public Point(int x, int y) {
37 public Point(Point src) {
43 * Set the point's x and y coordinates
51 * Negate the point's coordinates
59 * Offset the point's coordinates by dx, dy
67 * 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...]
  /sdk/rule_api/src/com/android/ide/common/api/
Point.java 21 * Mutable point.
27 public class Point {
30 public Point(int x, int y) {
35 public Point(Point p) {
40 /** Sets the point to the given coordinates. */
46 /** Returns a new instance of a point with the same values. */
47 public Point copy() {
48 return new Point(x, y);
52 * Offsets this point by adding the given x,y deltas to the x,y coordinates
    [all...]
  /system/media/mca/filterfw/native/core/
geometry.h 28 class Point {
30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
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 operator*(float factor) const
    [all...]
  /external/clang/test/PCH/
struct.h 3 struct Point {
  /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 };
  /sdk/chimpchat/src/com/android/chimpchat/adb/
LinearInterpolator.java 27 * Use our own Point class so we don't pull in java.awt.* just for this simple class.
29 public static class Point {
33 public Point(int x, int y) {
51 if (obj instanceof Point) {
52 Point that = (Point) obj;
77 * Called once to inform of the start point.
79 void start(Point point);
81 * Called once to inform of the end point
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 25 public class Point {
30 public Point() {
33 public Point(float x, float y) {
48 public Point plus(float x, float y) {
49 return new Point(this.x + x, this.y + y);
52 public Point plus(Point point) {
53 return this.plus(point.x, point.y)
    [all...]
  /system/media/mca/filterpacks/base/native/
geometry.h 28 class Point {
30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
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 operator*(float factor) const
    [all...]
  /external/clang/test/SemaTemplate/
example-dynarray.cpp 120 struct Point {
121 Point() { x = y = z = 0.0; }
122 Point(const Point& other) : x(other.x), y(other.y), z(other.z) { }
172 dynarray<Point> dp;
173 dp.push_back(Point());
  /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);

Completed in 2096 milliseconds

1 2