Searched defs:point_type (Results 1 - 9 of 9) sorted by relevance

/external/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c35 ffi_type point_type; local
47 point_type.size = 0; /*sizeof(Point);*/
48 point_type.alignment = 0; /*__alignof__(Point);*/
49 point_type.type = FFI_TYPE_STRUCT;
50 point_type.elements = malloc(3 * sizeof(ffi_type*));
51 point_type.elements[0] = &ffi_type_float;
52 point_type.elements[1] = &ffi_type_float;
53 point_type.elements[2] = NULL;
67 rect_type.elements[0] = &point_type;
76 arglist[2] = &point_type;
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c35 ffi_type point_type; local
47 point_type.size = 0; /*sizeof(Point);*/
48 point_type.alignment = 0; /*__alignof__(Point);*/
49 point_type.type = FFI_TYPE_STRUCT;
50 point_type.elements = malloc(3 * sizeof(ffi_type*));
51 point_type.elements[0] = &ffi_type_float;
52 point_type.elements[1] = &ffi_type_float;
53 point_type.elements[2] = NULL;
67 rect_type.elements[0] = &point_type;
76 arglist[2] = &point_type;
[all...]
/external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c35 ffi_type point_type; local
47 point_type.size = 0; /*sizeof(Point);*/
48 point_type.alignment = 0; /*__alignof__(Point);*/
49 point_type.type = FFI_TYPE_STRUCT;
50 point_type.elements = malloc(3 * sizeof(ffi_type*));
51 point_type.elements[0] = &ffi_type_float;
52 point_type.elements[1] = &ffi_type_float;
53 point_type.elements[2] = NULL;
67 rect_type.elements[0] = &point_type;
76 arglist[2] = &point_type;
[all...]
/external/pdfium/fpdfsdk/
H A Dfpdf_transformpage.cpp244 FXPT_TYPE point_type = pPoints[i].m_Type; local
245 if (point_type == FXPT_TYPE::MoveTo) {
247 } else if (point_type == FXPT_TYPE::BezierTo) {
256 } else if (point_type == FXPT_TYPE::LineTo) {
/external/pdfium/third_party/agg23/
H A Dagg_basics.h263 struct point_type { struct in namespace:agg
266 point_type() {} function in struct:agg::point_type
267 point_type(float x_, float y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} function in struct:agg::point_type
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_) {}
/external/pdfium/core/fxge/agg/
H A Dfx_agg_driver.cpp1071 FXPT_TYPE point_type = pPoints[i].m_Type; local
1072 if (point_type == FXPT_TYPE::MoveTo) {
1074 } else if (point_type == FXPT_TYPE::LineTo) {
1082 } else if (point_type == FXPT_TYPE::BezierTo) {
/external/pdfium/core/fxge/win32/
H A Dfx_win32_device.cpp179 FXPT_TYPE point_type = pPoints[i].m_Type; local
180 if (point_type == FXPT_TYPE::MoveTo) {
182 } else if (point_type == FXPT_TYPE::LineTo) {
187 } else if (point_type == FXPT_TYPE::BezierTo) {
H A Dfx_win32_gdipext.cpp1195 FXPT_TYPE point_type = pPoints[i].m_Type; local
1196 if (point_type == FXPT_TYPE::MoveTo) {
1201 } else if (point_type == FXPT_TYPE::LineTo) {
1213 } else if (point_type == FXPT_TYPE::BezierTo) {
/external/pdfium/core/fxge/skia/
H A Dfx_skia_device.cpp289 FXPT_TYPE point_type = pPoints[i].m_Type; local
290 if (point_type == FXPT_TYPE::MoveTo) {
292 } else if (point_type == FXPT_TYPE::LineTo) {
294 } else if (point_type == FXPT_TYPE::BezierTo) {

Completed in 2285 milliseconds