/external/libffi/testsuite/libffi.call/ |
D | pyobjc-tc.c | 35 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/ |
D | pyobjc-tc.c | 35 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/ |
D | agg_curves.cpp | 71 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()
|
D | agg_basics.h | 263 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
|
D | agg_curves.h | 103 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;
|
D | agg_vcgen_stroke.h | 38 typedef pod_deque<point_type, 6> coord_storage;
|
D | agg_vcgen_stroke.cpp | 195 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
|
/external/fonttools/Lib/fontTools/varLib/ |
D | cff.py | 253 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/ |
D | fpdf_transformpage.cpp | 244 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/ |
D | cfx_pathdata.cpp | 359 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/ |
D | fx_win32_device.cpp | 179 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()
|
D | fx_win32_gdipext.cpp | 1195 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/ |
D | fx_agg_driver.cpp | 1071 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/ |
D | fx_skia_device.cpp | 289 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/ |
D | ChangeLog.21 | 5468 * include/freetype/internal/t1types.h (T1_Font): Change point_type
|