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

12

/external/v8/test/mjsunit/
H A Ddebug-references.js85 // 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);
H A Ddebug-backtrace-text.js31 function Point(x, y) { class
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>
[all...]
H A Dmirror-object.js161 function Point(x,y) { class
170 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon4426
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin();
H A Dtypo.c6 struct Point { struct
11 struct Point top_left, // expected-note{{'top_left' declared here}}
/external/clang/test/Modules/Inputs/
H A Dpoint.h1 struct Point { int x, y; }; struct
/external/clang/test/Index/
H A Dcomplete-tabs.c2 struct Point { int x, y; }; struct
4 void f(struct Point *p) {
H A Dcomplete-macro-args.c1 struct Point { struct
10 void test(struct Point *p) {
/external/clang/test/CodeCompletion/
H A Dmember-access.c1 struct Point { struct
7 void test(struct Point *p) {
H A Dmacros.c5 struct Point { struct
10 void test(struct Point *p) {
/external/clang/test/SemaCXX/
H A Dc99.cpp5 struct Point { int x; int y; }; struct
7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}}
H A Dtag-ambig.cpp4 typedef struct Point Point; typedef in typeref:struct:Point
7 class Point;
15 struct Point { }; struct in class:Test
16 virtual bool testMethod (Test::Point& p) = 0;
H A Darrow-operator.cpp29 class Point {}; class in namespace:rdar8875304
30 class Line_Segment{ public: Line_Segment(const Point&){} }; argument
31 class Node { public: Point Location(){ Point p; return p; } };
/external/chromium/ui/gfx/
H A Dpoint.h24 class UI_EXPORT Point { class in namespace:gfx
26 Point();
27 Point(int x, int y);
32 explicit Point(DWORD point);
33 explicit Point(const POINT& point);
34 Point& operator=(const POINT& point);
36 explicit Point(const CGPoint& point);
39 ~Point() {}
57 Point Add(const Point
[all...]
H A Dpoint.cc15 Point::Point() : x_(0), y_(0) { function in class:gfx::Point
18 Point::Point(int x, int y) : x_(x), y_(y) { function in class:gfx::Point
22 Point::Point(DWORD point) { function in class:gfx::Point
28 Point::Point(const POINT& point) : x_(point.x), y_(point.y) { function in class:gfx::Point
31 Point& Point
44 Point::Point(const CGPoint& point) : x_(point.x), y_(point.y) { function in class:gfx::Point
[all...]
/external/clang/test/Analysis/
H A Dfields.c22 } Point; typedef in typeref:struct:__anon4003
24 Point getit(void);
26 Point p;
/external/clang/test/PCH/
H A Dstruct.h3 struct Point { struct
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
H A DParticleMesh.java57 Point, enum constant in enum:ParticleMesh.Type
/external/webkit/Source/WebKit/chromium/public/
H A DWebPoint.h79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
92 operator gfx::Point() const
94 return gfx::Point(x, y);
/external/v8/benchmarks/spinning-balls/
H A Dv.js68 function Point(x, y, z, payload) { class
80 Point.prototype.color = function () {
85 Point.prototype.decay = function () {
161 var point = new Point(Math.random() * 40 - 20,
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLight.java60 * Point light
64 Point(1), enum constant in enum:Light.Type
/external/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c10 typedef struct Point { struct
13 } Point; typedef in typeref:struct: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/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp120 struct Point { struct
121 Point() { x = y = z = 0.0; } function in struct:Point
122 Point(const Point& other) : x(other.x), y(other.y), z(other.z) { } function in struct:Point
172 dynarray<Point> dp;
173 dp.push_back(Point());
/external/stlport/test/unit/
H A Ddeque_test.cpp232 struct Point { struct
236 struct PointEx : public Point {
238 PointEx(const Point&) : builtFromBase(true) {} argument
265 deque<Point> d1(1);

Completed in 453 milliseconds

12