HomeSort by relevance Sort by last modified time
    Searched refs:POINT (Results 26 - 50 of 144) sorted by null

12 3 4 5 6

  /external/chromium/chrome/browser/tab_contents/
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/content/browser/web_contents/
web_drag_dest_win.cc 23 #include "ui/gfx/point.h"
153 POINT cursor_position,
187 POINT client_pt = cursor_position;
190 gfx::Point(client_pt.x, client_pt.y),
191 gfx::Point(cursor_position.x, cursor_position.y),
205 POINT cursor_position,
217 POINT client_pt = cursor_position;
220 gfx::Point(client_pt.x, client_pt.y),
221 gfx::Point(cursor_position.x, cursor_position.y),
253 POINT cursor_position
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 14 class POINT(Structure):
147 ptin = POINT(1, 2)
148 ptout = POINT()
149 # EXPORT int _testfunc_byval(point in, point *pout)
156 ptin = POINT(101, 102)
157 ptout = POINT()
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
test_functions.py 22 class POINT(Structure):
323 ptin = POINT(1, 2)
324 ptout = POINT()
325 # EXPORT int _testfunc_byval(point in, point *pout)
332 ptin = POINT(101, 102)
333 ptout = POINT()
334 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
404 proto = CFUNCTYPE(c_int, RECT, POINT)
    [all...]
test_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
test_structures.py 228 class POINT(Structure):
231 self.assertRaises(TypeError, POINT, 2, 3, x=4)
232 self.assertRaises(TypeError, POINT, 2, 3, y=4)
235 self.assertRaises(TypeError, POINT, 2, 3, 4)
238 class POINT(Structure):
240 pt = POINT(1, 2)
243 pt = POINT(y=2, x=1)
247 class POINT(Structure):
249 self.assertRaises(TypeError, setattr, POINT, "_fields_", [("x", 1), ("y", 2)])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 14 class POINT(Structure):
147 ptin = POINT(1, 2)
148 ptout = POINT()
149 # EXPORT int _testfunc_byval(point in, point *pout)
156 ptin = POINT(101, 102)
157 ptout = POINT()
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
test_functions.py 22 class POINT(Structure):
323 ptin = POINT(1, 2)
324 ptout = POINT()
325 # EXPORT int _testfunc_byval(point in, point *pout)
332 ptin = POINT(101, 102)
333 ptout = POINT()
334 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
404 proto = CFUNCTYPE(c_int, RECT, POINT)
    [all...]
test_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
test_structures.py 228 class POINT(Structure):
231 self.assertRaises(TypeError, POINT, 2, 3, x=4)
232 self.assertRaises(TypeError, POINT, 2, 3, y=4)
235 self.assertRaises(TypeError, POINT, 2, 3, 4)
238 class POINT(Structure):
240 pt = POINT(1, 2)
243 pt = POINT(y=2, x=1)
247 class POINT(Structure):
249 self.assertRaises(TypeError, setattr, POINT, "_fields_", [("x", 1), ("y", 2)])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 118 class POINT(Structure):
121 tagPOINT = _POINTL = POINTL = POINT
142 ("pt", POINT)]
179 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 118 class POINT(Structure):
121 tagPOINT = _POINTL = POINTL = POINT
142 ("pt", POINT)]
179 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /external/chromium_org/content/browser/aura/
software_output_device_win.cc 73 POINT position = {wr.left, wr.top};
74 POINT zero = {0, 0};
  /external/chromium_org/chrome/browser/ui/views/frame/
minimize_button_metrics_win.cc 23 POINT minimize_button_corner = { titlebar_info.rgrect[2].left /
  /external/chromium_org/content/test/plugin/
plugin_window_size_test.cc 40 POINT origin_from_os;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
  /external/chromium_org/ui/base/win/
mouse_wheel_util.cc 73 POINT wheel_location = { GET_X_LPARAM(l_param), GET_Y_LPARAM(l_param) };
113 // If we traversed back to the starting point, we should process
  /external/chromium_org/ui/views/controls/
native_control.h 59 virtual void OnContextMenu(const POINT& location);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
  /frameworks/base/tests/RenderScriptTests/Fountain/src/com/example/android/rs/fountain/
FountainRS.java 46 smb.addIndexSetType(Mesh.Primitive.POINT);
  /frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
FountainRS.java 46 smb.addIndexSetType(Mesh.Primitive.POINT);
  /external/chromium_org/ui/gfx/
gdi_util.cc 86 scoped_ptr<POINT[]> windows_points(new POINT[point_count]);
  /external/chromium_org/win8/delegate_execute/
command_execute_impl.h 68 STDMETHOD(SetPosition)(POINT pt);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_mesh.java 45 mBuilder.addIndexSetAllocation(iAlloc0, Primitive.POINT);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysmouse.c 189 POINT mouse_pos;
216 POINT pt;
234 POINT pt;

Completed in 553 milliseconds

12 3 4 5 6