HomeSort by relevance Sort by last modified time
    Searched refs:POINT (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/webkit/Source/WebCore/platform/graphics/win/
IntPointWin.cpp 33 IntPoint::IntPoint(const POINT& p)
39 IntPoint::operator POINT() const
41 POINT p = {m_x, m_y};
  /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...]
web_drag_source_win.cc 19 static void GetCursorPositions(gfx::NativeWindow wnd, gfx::Point* client,
20 gfx::Point* screen) {
21 POINT cursor_pos;
60 gfx::Point client;
61 gfx::Point screen;
83 gfx::Point client;
84 gfx::Point screen;
103 gfx::Point client;
104 gfx::Point screen;
  /external/qemu/distrib/sdl-1.2.12/src/video/gapi/
SDL_gapivideo.h 44 POINT ptUp; // x,y position of key/button. Not on screen but in screen coordinates.
46 POINT ptDown;
48 POINT ptLeft;
50 POINT ptRight;
52 POINT ptA;
54 POINT ptB;
56 POINT ptC;
58 POINT ptStart;
  /external/webkit/Source/WebCore/platform/win/
WheelEventWin.cpp 41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
42 ScreenToClient(hWnd, &point);
43 return point;
48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
49 return point;
82 POINT point = {location.x(), location.y()}; local
83 m_globalPosition = point;
    [all...]
PlatformMouseEventWin.cpp 40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
41 return point;
46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
47 ClientToScreen(hWnd, &point);
48 return point;
  /external/webkit/Source/WebKit/win/
WebKitGraphics.h 55 POINT pt;
WebDropSource.cpp 139 POINT cursorPoint;
WebNodeHighlight.cpp 165 POINT srcPoint;
169 POINT dstPoint;
WebKitGraphics.cpp 83 POINT pt;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebContextMenuProxyWin.cpp 85 POINT point = POINT(origin); local
86 if (!::ClientToScreen(m_window, &point))
90 int selectedCommand = ::TrackPopupMenuEx(m_menu, flags, point.x, point.y, m_window, 0);
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 44 POINT point = { -1, -1 }; local
45 ::GetCursorPos(&point);
46 ::ScreenToClient(hwnd, &point);
47 return MAKELPARAM(point.x, point.y);
50 static inline POINT point(LPARAM lParam) function in namespace:WebKit
52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) } local
    [all...]
  /development/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/
FountainRS.java 46 smb.addIndexSetType(Mesh.Primitive.POINT);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
WindowGeometryInitializedBeforeSetWindow.cpp 73 if (!::MapWindowPoints(hwnd, parent, reinterpret_cast<POINT*>(&rect), 2)) {
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysmouse.c 189 POINT mouse_pos;
219 POINT pt;
231 POINT pt;
SDL_syswm.c 268 POINT pt;
285 POINT pt;
  /external/webkit/Source/WebCore/platform/graphics/
IntPoint.h 49 typedef struct tagPOINT POINT;
128 IntPoint(const POINT&);
129 operator POINT() const;
209 inline QDataStream& operator<<(QDataStream& stream, const IntPoint& point)
211 stream << point.x() << point.y();
215 inline QDataStream& operator>>(QDataStream& stream, IntPoint& point)
219 point.setX(x);
220 point.setY(y);
  /development/samples/RenderScript/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboRS.java 48 smb.addIndexSetType(Mesh.Primitive.POINT);
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win.cc 77 POINT p;
  /external/webkit/Source/WebKit/chromium/src/win/
WebInputEventFactory.cpp 168 POINT pos = {-1, -1};
247 POINT globalPoint = { result.x, result.y };
343 POINT cursorPosition = {0};
404 POINT clientPoint = { result.globalX, result.globalY };
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc 102 // Returns true if the current point is far enough from the origin that it
104 bool IsDrag(const POINT& origin, const POINT& current) {
124 POINT cursor_position,
128 POINT cursor_position,
133 POINT cursor_position,
139 void UpdateDropHighlightPosition(const POINT& cursor_screen_position);
168 POINT cursor_position,
175 // The edit we're associated with originated the drag. No point in
191 POINT cursor_position
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp 90 POINT localpt = core(m_webView)->mainFrame()->view()->windowToContents(windowPoint);
102 POINT point = intPoint;
106 HRESULT result = uiDelegate->willPerformDragSourceAction(m_webView, static_cast<WebDragSourceAction>(action), &point, dataObject.get(), &newDataObject);
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 48 static void MoveMouse(const POINT& point) {
49 SetCursorPos(point.x, point.y);
54 PostMessage(NULL, WM_MOUSEMOVE, 0, MAKELPARAM(point.x, point.y));
62 gfx::Point cursor_point(pos);
63 DCHECK_EQ(point.x, cursor_point.x());
64 DCHECK_EQ(point.y, cursor_point.y());
81 const gfx::Point& point
    [all...]
  /development/samples/RenderScript/Balls/src/com/example/android/rs/balls/
BallsRS.java 109 smb.addIndexSetType(Mesh.Primitive.POINT);

Completed in 444 milliseconds

1 2 3 4