Home
last modified time | relevance | path

Searched refs:point_type (Results 1 – 15 of 15) sorted by relevance

/external/libffi/testsuite/libffi.call/
Dpyobjc-tc.c35 ffi_type point_type; in main() local
47 point_type.size = 0; /*sizeof(Point);*/ in main()
48 point_type.alignment = 0; /*__alignof__(Point);*/ in main()
49 point_type.type = FFI_TYPE_STRUCT; in main()
50 point_type.elements = malloc(3 * sizeof(ffi_type*)); in main()
51 point_type.elements[0] = &ffi_type_float; in main()
52 point_type.elements[1] = &ffi_type_float; in main()
53 point_type.elements[2] = NULL; in main()
67 rect_type.elements[0] = &point_type; in main()
76 arglist[2] = &point_type; in main()
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
Dpyobjc-tc.c35 ffi_type point_type; in main() local
47 point_type.size = 0; /*sizeof(Point);*/ in main()
48 point_type.alignment = 0; /*__alignof__(Point);*/ in main()
49 point_type.type = FFI_TYPE_STRUCT; in main()
50 point_type.elements = malloc(3 * sizeof(ffi_type*)); in main()
51 point_type.elements[0] = &ffi_type_float; in main()
52 point_type.elements[1] = &ffi_type_float; in main()
53 point_type.elements[2] = NULL; in main()
67 rect_type.elements[0] = &point_type; in main()
76 arglist[2] = &point_type; in main()
/external/pdfium/third_party/agg23/
Dagg_curves.cpp71 m_points.add(point_type(x1234, y1234, path_flags_jr)); in recursive_bezier()
78 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
85 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
92 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
105 m_points.add(point_type(x1, y1)); in bezier()
107 m_points.add(point_type(x4, y4)); in bezier()
Dagg_basics.h263 struct point_type { struct
266 point_type() {} in point_type() function
267 point_type(float x_, float y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} in x() argument
269 struct point_type_flag : public point_type {
275 point_type_flag(float x_, float y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {} in point_type() function
Dagg_curves.h103 const point_type& p = m_points[m_count++]; in vertex()
113 const point_type& p = m_points[m_count++]; in vertex_flag()
136 pod_deque<point_type> m_points;
Dagg_vcgen_stroke.h38 typedef pod_deque<point_type, 6> coord_storage;
Dagg_vcgen_stroke.cpp195 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
/external/fonttools/Lib/fontTools/varLib/
Dcff.py253 def __init__(self, point_type, pt_index, m_index, default_type, glyphName): argument
260 point_type=point_type, pt_index=pt_index,
318 def add_point(self, point_type, pt_coords): argument
320 self._commands.append([point_type, [pt_coords]])
323 if cmd[0] != point_type:
328 cmd, point_type, pt_coords)
331 cmd, point_type, pt_coords)
335 if cmd[0] != point_type:
338 raise MergeTypeError(point_type,
/external/pdfium/fpdfsdk/
Dfpdf_transformpage.cpp244 FXPT_TYPE point_type = pPoints[i].m_Type; in OutputPath() local
245 if (point_type == FXPT_TYPE::MoveTo) { in OutputPath()
247 } else if (point_type == FXPT_TYPE::BezierTo) { in OutputPath()
256 } else if (point_type == FXPT_TYPE::LineTo) { in OutputPath()
/external/pdfium/core/fxge/
Dcfx_pathdata.cpp359 FXPT_TYPE point_type = m_Points[i].m_Type; in GetZeroAreaPath() local
360 if (point_type == FXPT_TYPE::MoveTo) { in GetZeroAreaPath()
362 } else if (point_type == FXPT_TYPE::LineTo) { in GetZeroAreaPath()
406 } else if (point_type == FXPT_TYPE::BezierTo) { in GetZeroAreaPath()
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp179 FXPT_TYPE point_type = pPoints[i].m_Type; in SetPathToDC() local
180 if (point_type == FXPT_TYPE::MoveTo) { in SetPathToDC()
182 } else if (point_type == FXPT_TYPE::LineTo) { in SetPathToDC()
187 } else if (point_type == FXPT_TYPE::BezierTo) { in SetPathToDC()
Dfx_win32_gdipext.cpp1195 FXPT_TYPE point_type = pPoints[i].m_Type; in DrawPath() local
1196 if (point_type == FXPT_TYPE::MoveTo) { in DrawPath()
1201 } else if (point_type == FXPT_TYPE::LineTo) { in DrawPath()
1213 } else if (point_type == FXPT_TYPE::BezierTo) { in DrawPath()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp1071 FXPT_TYPE point_type = pPoints[i].m_Type; in BuildPath() local
1072 if (point_type == FXPT_TYPE::MoveTo) { in BuildPath()
1074 } else if (point_type == FXPT_TYPE::LineTo) { in BuildPath()
1082 } else if (point_type == FXPT_TYPE::BezierTo) { in BuildPath()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp289 FXPT_TYPE point_type = pPoints[i].m_Type; in BuildPath() local
290 if (point_type == FXPT_TYPE::MoveTo) { in BuildPath()
292 } else if (point_type == FXPT_TYPE::LineTo) { in BuildPath()
294 } else if (point_type == FXPT_TYPE::BezierTo) { in BuildPath()
/external/freetype/
DChangeLog.215468 * include/freetype/internal/t1types.h (T1_Font): Change point_type