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

12 3 4 5 6

  /external/python/cpython2/Lib/ctypes/
wintypes.py 114 class POINT(Structure):
117 tagPOINT = _POINTL = POINTL = POINT
138 ("pt", POINT)]
175 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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',
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
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/gdb/linux-x86/lib/python2.7/ctypes/test/
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/test/
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_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)])
  /external/deqp/modules/glshared/
glsScissorTests.hpp 55 POINT = 0,
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
  /libcore/ojluni/src/main/java/sun/security/x509/
IssuingDistributionPointExtension.java 38 * Represents the CRL Issuing Distribution Point Extension (OID = 2.5.29.28).
41 * The issuing distribution point is a critical CRL extension that
42 * identifies the CRL distribution point and scope for a particular CRL,
83 public static final String POINT = "point";
91 * The distribution point name for the CRL.
117 * @param distributionPoint the name of the distribution point, or null for
120 * distribution point, or null for none.
231 * Encodes the issuing distribution point extension and writes it to the
252 if (name.equalsIgnoreCase(POINT)) {
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_structures.py 229 class POINT(Structure):
232 self.assertRaises(TypeError, POINT, 2, 3, x=4)
233 self.assertRaises(TypeError, POINT, 2, 3, y=4)
236 self.assertRaises(TypeError, POINT, 2, 3, 4)
239 class POINT(Structure):
241 pt = POINT(1, 2)
244 pt = POINT(y=2, x=1)
248 class POINT(Structure):
250 self.assertRaises(TypeError, setattr, POINT, "_fields_", [("x", 1), ("y", 2)])
  /external/mesa3d/include/d3dadapter/
present.h 85 HRESULT (WINAPI *GetCursorPos)(ID3DPresent *This, POINT *pPoint);
86 HRESULT (WINAPI *SetCursorPos)(ID3DPresent *This, POINT *pPoint);
88 HRESULT (WINAPI *SetCursor)(ID3DPresent *This, void *pBitmap, POINT *pHotspot, BOOL bShow);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwmapi.h 251 HRESULT WINAPI DwmSetIconicLivePreviewBitmap (HWND hwnd, HBITMAP hbmp, POINT *pptClient, DWORD dwSITFlags);
255 HRESULT WINAPI DwmRenderGesture (enum GESTURE_TYPE gt, UINT cContacts, const DWORD *pdwPointerID, const POINT *pPoints);
256 HRESULT WINAPI DwmTetherContact (DWORD dwPointerID, WINBOOL fEnable, POINT ptTether);
d2dbasetypes.h 70 typedef POINT D2D_POINT_2L;
multimon.h 119 HMONITOR (WINAPI *g_pfnMonitorFromPoint)(POINT, DWORD) = NULL;
197 HMONITOR WINAPI xMonitorFromPoint (POINT pt, DWORD flags) {
272 POINT ptOrg;
330 extern HMONITOR WINAPI xMonitorFromPoint (POINT, DWORD);
windef.h 92 } POINT,*PPOINT,*NPPOINT,*LPPOINT;
  /external/mesa3d/src/gallium/state_trackers/nine/
surface9.h 129 const POINT *pDestPoint,
  /external/python/cpython2/Modules/_ctypes/
_ctypes_test.c 309 } point; typedef in typeref:struct:tagpoint
311 EXPORT(int) _testfunc_byval(point in, point *pout)
532 } POINT;
543 EXPORT(int) PointInRect(RECT *prc, POINT pt)
561 EXPORT(RECT) ReturnRect(int i, RECT ar, RECT* br, POINT cp, RECT dr,
562 RECT *er, POINT fp, RECT gr)
  /external/lzma/CPP/Windows/
Window.h 82 bool ClientToScreen(LPPOINT point) const { return BOOLToBool(::ClientToScreen(_window, point)); }
83 bool ScreenToClient(LPPOINT point) const { return BOOLToBool(::ScreenToClient(_window, point)); }
140 POINT p1;
149 POINT p1, p2;

Completed in 2268 milliseconds

12 3 4 5 6