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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_ctypes.py 9 class POINT(Structure):
12 _fields_ = [("a", POINTER(POINT))]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_prim_assembler_tmp.h 25 #define POINT(i0) prim_point(asmblr, i0)
draw_so_emit_tmp.h 27 #define POINT(i0) so_point(so,i0)
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
draw_decompose_tmp.h 66 POINT(idx[0]);
438 #undef POINT
draw_pipe.c 113 * Build primitive to render a point with vertex at v0.
124 draw->pipeline.first->point( draw->pipeline.first, &prim );
192 #define POINT(i0) \
292 #define POINT(i0) \
  /external/python/cpython2/Lib/test/leakers/
test_ctypes.py 8 class POINT(Structure):
11 _fields_ = [("a", POINTER(POINT))]
  /external/python/cpython3/Lib/test/leakers/
test_ctypes.py 8 class POINT(Structure):
11 _fields_ = [("a", POINTER(POINT))]
  /external/python/cpython2/Lib/ctypes/test/
test_win32.py 81 class POINT(Structure):
93 pt = POINT(15, 25)
100 PointInRect.argtypes = [POINTER(RECT), POINT]
104 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
105 POINTER(RECT), POINT, RECT]
test_keeprefs.py 45 class POINT(Structure):
48 _fields_ = [("ul", POINT), ("lr", POINT)]
58 pt = POINT(1, 2)
64 r.lr = POINT()
130 class POINT(Structure):
133 _fields_ = [("a", POINTER(POINT)),
134 ("b", POINTER(POINT))]
136 p1 = POINT(1, 2)
150 del _pointer_type_cache[POINT]
    [all...]
test_as_parameter.py 14 class POINT(Structure):
144 ptin = POINT(1, 2)
145 ptout = POINT()
146 # EXPORT int _testfunc_byval(point in, point *pout)
153 ptin = POINT(101, 102)
154 ptout = POINT()
155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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...]
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))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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/python/cpython3/Lib/ctypes/test/
test_keeprefs.py 45 class POINT(Structure):
48 _fields_ = [("ul", POINT), ("lr", POINT)]
58 pt = POINT(1, 2)
64 r.lr = POINT()
130 class POINT(Structure):
133 _fields_ = [("a", POINTER(POINT)),
134 ("b", POINTER(POINT))]
136 p1 = POINT(1, 2)
150 del _pointer_type_cache[POINT]
    [all...]
test_win32.py 102 class POINT(Structure):
114 pt = POINT(15, 25)
121 PointInRect.argtypes = [POINTER(RECT), POINT]
125 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
126 POINTER(RECT), POINT, RECT]
test_as_parameter.py 14 class POINT(Structure):
144 ptin = POINT(1, 2)
145 ptout = POINT()
146 # EXPORT int _testfunc_byval(point in, point *pout)
153 ptin = POINT(101, 102)
154 ptout = POINT()
155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
  /external/deqp/modules/glshared/
glsScissorTests.hpp 55 POINT = 0,
  /external/libmojo/ui/gfx/geometry/
point.h 19 typedef struct tagPOINT POINT;
26 // A point has an x and y coordinate.
27 class GFX_EXPORT Point {
29 constexpr Point() : x_(0), y_(0) {}
30 constexpr Point(int x, int y) : x_(x), y_(y) {}
32 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
35 explicit Point(DWORD point);
36 explicit Point(const POINT& point)
    [all...]

Completed in 692 milliseconds

1 2 3