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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 28 #define POINT(i0) so_point(so,i0)
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
draw_decompose_tmp.h 67 POINT(idx[0]);
439 #undef POINT
draw_pipe.c 112 * Build primitive to render a point with vertex at v0.
123 draw->pipeline.first->point( draw->pipeline.first, &prim );
191 #define POINT(i0) \
289 #define POINT(i0) \
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 28 #define POINT(i0) so_point(so,i0)
draw_gs_tmp.h 27 #define POINT(i0) gs_point(gs,i0)
draw_decompose_tmp.h 67 POINT(idx[0]);
439 #undef POINT
draw_pipe.c 112 * Build primitive to render a point with vertex at v0.
123 draw->pipeline.first->point( draw->pipeline.first, &prim );
191 #define POINT(i0) \
289 #define POINT(i0) \
  /external/chromium_org/skia/ext/
skia_utils_win.h 15 typedef struct tagPOINT POINT;
20 // Converts a Skia point to a Windows POINT.
21 POINT SkPointToPOINT(const SkPoint& point);
  /external/pixman/demos/
tri-test.c 13 #define POINT(x,y) \
19 { POINT (100, 100), POINT (10, 50), POINT (110, 10) },
20 { POINT (100, 100), POINT (150, 10), POINT (200, 50) },
21 { POINT (100, 100), POINT (10, 170), POINT (90, 175) }
    [all...]
  /external/chromium_org/ui/gfx/
point.h 15 typedef struct tagPOINT POINT;
24 // A point has an x and y coordinate.
25 class UI_EXPORT Point : public PointBase<Point, int, Vector2d> {
27 Point() : PointBase<Point, int, Vector2d>(0, 0) {}
28 Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {}
30 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
33 explicit Point(DWORD point)
    [all...]
  /external/chromium/ui/gfx/
point.h 16 typedef struct tagPOINT POINT;
23 // A point has an x and y coordinate.
24 class UI_EXPORT Point {
26 Point();
27 Point(int x, int y);
29 // |point| is a DWORD value that contains a coordinate. The x-coordinate is
32 explicit Point(DWORD point);
33 explicit Point(const POINT& point)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
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_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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_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_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_win32.py 76 class POINT(Structure):
88 pt = POINT(10, 10)
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_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',
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 54 POINT (0),
545 * Builder that allows creation of a mesh object point by point

Completed in 748 milliseconds

1 2