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

12

/external/chromium/base/gfx/
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...]
H A Dpoint.h24 class 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 bool operator==(const Point& rhs) const {
61 bool operator!=(const Point
[all...]
H A Drect.h40 Rect(const gfx::Point& origin, const gfx::Size& size);
64 const gfx::Point& origin() const { return origin_; }
65 void set_origin(const gfx::Point& origin) { origin_ = origin; }
85 void Offset(const gfx::Point& point) {
114 bool Contains(const gfx::Point& point) const {
150 Point CenterPoint() const;
157 gfx::Point origin_;
H A Drect.cc49 Rect::Rect(const gfx::Point& origin, const gfx::Size& size)
224 Point Rect::CenterPoint() const {
225 return Point(x() + (width() + 1) / 2, y() + (height() + 1) / 2);
/external/v8/test/mjsunit/
H A Ddebug-constructed-by.js33 function Point(x,y) {}
36 var ctor = debug.MakeMirror(Point);
45 var p = new Point();
55 ps.push(new Point());
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("#<a Point>.distanceTo(p=#<a Point>)", exec_state.frame(0).invocationText());
84 assertEquals("#<a Point>
[all...]
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 Dmirror-object.js156 function Point(x,y) { class
165 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
/external/webkit/WebCore/platform/graphics/haiku/
H A DFloatPointHaiku.cpp31 #include <Point.h>
H A DIntPointHaiku.cpp31 #include <Point.h>
/external/webkit/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/webkit/WebCore/platform/haiku/
H A DPlatformWheelEventHaiku.cpp35 #include <Point.h>
/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/qemu/distrib/sdl-1.2.12/src/video/maccommon/
H A DSDL_lowvideo.h70 Point last_where;
H A DSDL_macmouse.c117 Point where;
H A DSDL_macevents.c89 static void myGlobalToLocal(_THIS, Point *pt)
153 Point pt;
415 Point spot;
/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/skia/src/animator/
H A DSkMatrixParts.cpp47 SK_MEMBER(center, Point),
68 SK_MEMBER(center, Point),
90 SK_MEMBER(center, Point),
H A DSkDrawGradient.cpp207 SK_MEMBER(center, Point),
H A DSkDrawMatrix.cpp53 SK_MEMBER_PROPERTY(translate, Point),
/external/chromium/third_party/icu/source/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/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/webkit/WebCore/plugins/mac/
H A DPluginViewMac.cpp734 Point PluginView::globalMousePosForPlugin() const
736 Point pos;
/external/webkit/WebKit/mac/Carbon/
H A DHIWebView.mm730 Point where;
731 GetEventParameter(inEvent, kEventParamMouseLocation, typeQDPoint, NULL, sizeof(Point), NULL, &where);
742 SetEventParameter(inEvent, kEventParamWindowMouseLocation, typeQDPoint, sizeof(Point), &where);
1554 Point offset = { 0, 0 };

Completed in 1041 milliseconds

12