/external/pixman/demos/ |
tri-test.c | 13 #define POINT(x,y) \ 19 { POINT (100, 100), POINT (10, 50), POINT (110, 10) }, 20 { POINT (100, 100), POINT (150, 10), POINT (200, 50) }, 21 { POINT (100, 100), POINT (10, 170), POINT (90, 175) } [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/ |
SDL_gapivideo.h | 45 POINT ptUp; // x,y position of key/button. Not on screen but in screen coordinates. 47 POINT ptDown; 49 POINT ptLeft; 51 POINT ptRight; 53 POINT ptA; 55 POINT ptB; 57 POINT ptC; 59 POINT ptStart;
|
/external/chromium_org/ui/base/dragdrop/ |
drop_target_win.cc | 47 reinterpret_cast<POINT*>(&cursor_position), *effect); 51 POINT screen_pt = { cursor_position.x, cursor_position.y }; 62 drop_helper->DragOver(reinterpret_cast<POINT*>(&cursor_position), *effect); 64 POINT screen_pt = { cursor_position.x, cursor_position.y }; 89 reinterpret_cast<POINT*>(&cursor_position), *effect); 92 POINT screen_pt = { cursor_position.x, cursor_position.y }; 125 POINT cursor_position, 132 POINT cursor_position, 142 POINT cursor_position,
|
drop_target_win.h | 62 POINT cursor_position, 71 POINT cursor_position, 82 POINT cursor_position,
|
/external/chromium/chrome/browser/tab_contents/ |
web_drop_target_win.h | 34 POINT cursor_position, 39 POINT cursor_position, 46 POINT cursor_position,
|
web_drop_target_win.cc | 19 #include "ui/gfx/point.h" 97 POINT cursor_position, 117 POINT client_pt = cursor_position; 120 gfx::Point(client_pt.x, client_pt.y), 121 gfx::Point(cursor_position.x, cursor_position.y), 141 POINT cursor_position, 150 POINT client_pt = cursor_position; 153 gfx::Point(client_pt.x, client_pt.y), 154 gfx::Point(cursor_position.x, cursor_position.y), 190 POINT cursor_position [all...] |
/external/chromium_org/skia/ext/ |
skia_utils_win.h | 15 typedef struct tagPOINT POINT; 20 // Converts a Skia point to a Windows POINT. 21 POINT SkPointToPOINT(const SkPoint& point);
|
skia_utils_win.cc | 36 POINT SkPointToPOINT(const SkPoint& point) { 37 POINT win_point = { SkScalarRound(point.fX), SkScalarRound(point.fY) };
|
/external/chromium_org/ui/views/widget/ |
drop_target_win.h | 37 POINT cursor_position, 44 POINT cursor_position,
|
drop_target_win.cc | 10 #include "ui/gfx/point.h" 33 POINT cursor_position, 35 gfx::Point root_view_location(cursor_position.x, cursor_position.y); 50 POINT cursor_position, 52 gfx::Point root_view_location(cursor_position.x, cursor_position.y);
|
aero_tooltip_manager.cc | 14 #include "ui/gfx/point.h" 44 gfx::Point mouse_pos_in_pixels(l_param); 45 gfx::Point mouse_pos = gfx::win::ScreenToDIPPoint(mouse_pos_in_pixels); 48 POINT temp = mouse_pos_in_pixels.ToPOINT(); 81 POINT pt = last_mouse_pos_.ToPOINT();
|
/external/chromium/ui/gfx/ |
point.cc | 5 #include "ui/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 | 16 typedef struct tagPOINT POINT; 23 // A point has an x and y coordinate. 24 class UI_EXPORT 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/chromium_org/ui/gfx/ |
point.cc | 5 #include "ui/gfx/point.h" 15 template class PointBase<Point, int, Vector2d>; 18 Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){ 19 POINTS points = MAKEPOINTS(point); 24 Point::Point(const POINT& point [all...] |
point.h | 15 typedef struct tagPOINT POINT; 24 // A point has an x and y coordinate. 25 class GFX_EXPORT Point : public PointBase<Point, int, Vector2d> { 27 Point() : PointBase<Point, int, Vector2d>(0, 0) {} 28 Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {} 30 // |point| is a DWORD value that contains a coordinate. The x-coordinate is 33 explicit Point(DWORD point) [all...] |
path_win.cc | 31 scoped_ptr<POINT[]> windows_points(new POINT[point_count]);
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_drop_target_win.h | 38 POINT position, 42 POINT position, 47 POINT position, 57 POINT cursor_position,
|
desktop_drop_target_win.cc | 37 POINT position, 50 POINT position, 68 POINT position, 92 POINT position, 97 gfx::Point location(position.x, position.y); 98 gfx::Point root_location = location;
|
/external/chromium_org/content/browser/web_contents/ |
web_drag_dest_win.h | 42 POINT cursor_position, 47 POINT cursor_position, 54 POINT cursor_position,
|
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/ |
t_dd_unfilled.h | 68 if (ef[e0]) POINT( v[0] ); 69 if (ef[e1]) POINT( v[1] ); 70 if (ef[e2]) POINT( v[2] ); 136 if (ef[e0]) POINT( v[0] ); 137 if (ef[e1]) POINT( v[1] ); 138 if (ef[e2]) POINT( v[2] ); 139 if (ef[e3]) POINT( v[3] );
|
/external/mesa3d/src/mesa/tnl_dd/ |
t_dd_unfilled.h | 68 if (ef[e0]) POINT( v[0] ); 69 if (ef[e1]) POINT( v[1] ); 70 if (ef[e2]) POINT( v[2] ); 136 if (ef[e0]) POINT( v[0] ); 137 if (ef[e1]) POINT( v[1] ); 138 if (ef[e2]) POINT( v[2] ); 139 if (ef[e3]) POINT( v[3] );
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_keeprefs.py | 45 class POINT(Structure): 48 _fields_ = [("ul", POINT), ("lr", POINT)] 58 pt = POINT(1, 2) 64 r.lr = POINT() 129 class POINT(Structure): 132 _fields_ = [("a", POINTER(POINT)), 133 ("b", POINTER(POINT))] 135 p1 = POINT(1, 2) 149 del _pointer_type_cache[POINT] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_keeprefs.py | 45 class POINT(Structure): 48 _fields_ = [("ul", POINT), ("lr", POINT)] 58 pt = POINT(1, 2) 64 r.lr = POINT() 129 class POINT(Structure): 132 _fields_ = [("a", POINTER(POINT)), 133 ("b", POINTER(POINT))] 135 p1 = POINT(1, 2) 149 del _pointer_type_cache[POINT] [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_so_emit_tmp.h | 28 #define POINT(i0) so_point(so,i0)
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_so_emit_tmp.h | 28 #define POINT(i0) so_point(so,i0)
|