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

/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.js156 function Point(x,y) { class
165 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
/external/clang/test/FixIt/
H A Dno-typo.c4 } Point; typedef in typeref:struct:__anon3532
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, accepted in C++ as an extension}}
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/clang/test/Analysis/
H A Dfields.c22 } Point; typedef in typeref:struct:__anon3161
24 Point getit(void);
26 Point p;
/external/clang/test/PCH/
H A Dstruct.h3 struct Point { struct
/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/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);
H A Dvector_test.cpp403 struct Point { struct
407 struct PointEx : public Point {
409 PointEx(const Point&) : builtFromBase(true) {} argument
436 vector<Point> v1(1);
/external/icu4c/common/
H A Dubidiimp.h176 typedef struct Point { struct
179 } Point; typedef in typeref:struct:Point
186 Point *points; /* pointer to array of points */
/external/llvm/lib/CodeGen/
H A DRegAllocLinearScan.cpp812 SlotIndex Point){
816 IP.second, Point);
811 RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, SlotIndex Point) argument
/external/llvm/include/llvm/Support/
H A DIRBuilder.h130 BasicBlock::iterator Point; member in class:llvm::IRBuilderBase::InsertPoint
138 : Block(InsertBlock), Point(InsertPoint) {}
144 llvm::BasicBlock::iterator getPoint() const { return Point; }
/external/opencv/cvaux/src/
H A Dcvlee.cpp1424 CvPoint Point;
1429 CV_READ_SEQ_ELEM(Point,reader);
1430 Point.y = 600 - Point.y;
1431 CV_WRITE_SEQ_ELEM(Point,writer);
3641 CvPointFloat Point,ParPoint1_img,RayPoint1_img; local
3706 Point.x = X[(N-1)*(IntersectionNumber - 1)];
3707 Point.y = pEdge2->parabola->a*Point.x*Point
3750 CvPointFloat Point,ParPoint1_img,ParPoint2_img,RayPoint1_img; local
3893 CvPointFloat Point = {0,0},ParPoint1_img,RayPoint1_img; local
3978 CvPointFloat Point={0,0},ParPoint1_img,RayPoint1_img,RayPoint2_img; local
4087 CvPointFloat Point; local
4225 CvPointFloat Point; local
[all...]

Completed in 850 milliseconds