HomeSort by relevance Sort by last modified time
    Searched defs:RECT (Results 1 - 25 of 43) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_ctypes.py 11 class RECT(Structure):
  /external/python/cpython2/Lib/test/leakers/
test_ctypes.py 10 class RECT(Structure):
  /external/python/cpython3/Lib/test/leakers/
test_ctypes.py 10 class RECT(Structure):
  /external/python/cpython2/Lib/ctypes/test/
test_win32.py 85 class RECT(Structure):
98 rect = RECT(left, top, right, bottom)
100 PointInRect.argtypes = [POINTER(RECT), POINT]
101 self.assertEqual(1, PointInRect(byref(rect), pt))
104 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
105 POINTER(RECT), POINT, RECT]
    [all...]
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
132 class RECT(Structure):
135 r = RECT()
test_functions.py 25 class RECT(Structure):
394 proto = CFUNCTYPE(c_int, RECT, POINT)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_win32.py 80 class RECT(Structure):
89 rect = RECT(0, 0, 20, 20)
90 self.assertEqual(1, dll.PointInRect(byref(rect), pt))
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
131 class RECT(Structure):
134 r = RECT()
test_functions.py 24 class RECT(Structure):
404 proto = CFUNCTYPE(c_int, RECT, POINT)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_win32.py 80 class RECT(Structure):
89 rect = RECT(0, 0, 20, 20)
90 self.assertEqual(1, dll.PointInRect(byref(rect), pt))
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
131 class RECT(Structure):
134 r = RECT()
test_functions.py 24 class RECT(Structure):
404 proto = CFUNCTYPE(c_int, RECT, POINT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_win32.py 80 class RECT(Structure):
89 rect = RECT(0, 0, 20, 20)
90 self.assertEqual(1, dll.PointInRect(byref(rect), pt))
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
131 class RECT(Structure):
134 r = RECT()
test_functions.py 24 class RECT(Structure):
404 proto = CFUNCTYPE(c_int, RECT, POINT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_win32.py 80 class RECT(Structure):
89 rect = RECT(0, 0, 20, 20)
90 self.assertEqual(1, dll.PointInRect(byref(rect), pt))
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
131 class RECT(Structure):
134 r = RECT()
test_functions.py 24 class RECT(Structure):
404 proto = CFUNCTYPE(c_int, RECT, POINT)
  /external/python/cpython3/Lib/ctypes/test/
test_keeprefs.py 47 class RECT(Structure):
50 r = RECT()
57 r = RECT()
132 class RECT(Structure):
135 r = RECT()
test_win32.py 106 class RECT(Structure):
119 rect = RECT(left, top, right, bottom)
121 PointInRect.argtypes = [POINTER(RECT), POINT]
122 self.assertEqual(1, PointInRect(byref(rect), pt))
125 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
126 POINTER(RECT), POINT, RECT]
    [all...]
test_functions.py 25 class RECT(Structure):
394 proto = CFUNCTYPE(c_int, RECT, POINT)
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 37 private static final RectF RECT = new RectF(0, 0, 100, 100);
365 canvas.drawRoundRect(RECT, 20, 20, paint);
368 put("rect", new DisplayModifier() {
371 canvas.drawRect(RECT, paint);
383 canvas.drawOval(RECT, paint);
427 canvas.drawArc(RECT, 260, 285, false, paint);
433 canvas.drawArc(RECT, 260, 285, true, paint);
  /external/libmojo/ui/gfx/geometry/
rect.h 27 typedef struct tagRECT RECT;
36 class GFX_EXPORT Rect {
38 constexpr Rect() = default;
39 constexpr Rect(int width, int height) : size_(width, height) {}
40 constexpr Rect(int x, int y, int width, int height)
43 constexpr explicit Rect(const Size& size) : size_(size) {}
44 constexpr Rect(const Point& origin, const Size& size)
50 explicit Rect(const RECT& r);
52 explicit Rect(const CGRect& r)
    [all...]
  /external/python/cpython2/Lib/ctypes/
wintypes.py 96 class RECT(Structure):
101 tagRECT = _RECTL = RECTL = RECT
175 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
wintypes.py 100 class RECT(Structure):
105 tagRECT = _RECTL = RECTL = RECT
179 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',

Completed in 395 milliseconds

1 2