Home
last modified time | relevance | path

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

/external/pdfium/third_party/agg23/
Dagg_curves.cpp73 m_points.add(point_type(x1234, y1234, path_flags_jr)); in recursive_bezier()
80 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
87 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
94 m_points.add(point_type(x23, y23, path_flags_jr)); in recursive_bezier()
107 m_points.add(point_type(x1, y1)); in bezier()
109 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(FX_FLOAT x_, FX_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(FX_FLOAT x_, FX_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.cpp197 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
/external/opencv3/modules/imgproc/test/
Dtest_convhull.cpp276 int i, k, n, total, point_type; in generate_point_set() local
292 point_type = CV_SEQ_ELTYPE(ptseq); in generate_point_set()
300 point_type = CV_MAT_TYPE(ptm->type); in generate_point_set()
304 n = CV_MAT_CN(point_type); in generate_point_set()
305 point_type = CV_MAT_DEPTH(point_type); in generate_point_set()
307 assert( (point_type == CV_32S || point_type == CV_32F) && n <= 4 ); in generate_point_set()
324 if( point_type == CV_32S ) in generate_point_set()
338 int point_type; in prepare_test_case() local
347 point_type = CV_MAKETYPE(cvtest::randInt(rng) % in prepare_test_case()
353 points1 = cvCreateSeq( point_type, sizeof(CvSeq), CV_ELEM_SIZE(point_type), storage ); in prepare_test_case()
[all …]
/external/pdfium/fpdfsdk/src/
Dfpdf_transformpage.cpp242 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in OutputPath() local
243 if (point_type == FXPT_MOVETO) in OutputPath()
245 else if (point_type == FXPT_BEZIERTO) { in OutputPath()
254 } else if (point_type == FXPT_LINETO) { in OutputPath()
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp142 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in BuildPath() local
143 if (point_type == FXPT_MOVETO) { in BuildPath()
145 } else if (point_type == FXPT_LINETO) { in BuildPath()
161 } else if (point_type == FXPT_BEZIERTO) { in BuildPath()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp470 int point_type = m_pPoints[i].m_Flag & FXPT_TYPE; in GetZeroAreaPath() local
471 if (point_type == FXPT_MOVETO) { in GetZeroAreaPath()
473 } else if (point_type == FXPT_LINETO) { in GetZeroAreaPath()
525 } else if (point_type == FXPT_BEZIERTO) { in GetZeroAreaPath()
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp770 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in _SetPathToDC() local
771 if (point_type == PT_MOVETO) { in _SetPathToDC()
773 } else if (point_type == PT_LINETO) { in _SetPathToDC()
779 } else if (point_type == PT_BEZIERTO) { in _SetPathToDC()
Dfx_win32_gdipext.cpp1153 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in DrawPath() local
1154 if (point_type == FXPT_MOVETO) { in DrawPath()
1159 } else if (point_type == FXPT_LINETO) { in DrawPath()
1171 } else if (point_type == FXPT_BEZIERTO) { in DrawPath()
/external/pdfium/core/src/fxge/agg/src/
Dfx_agg_driver.cpp43 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in BuildPath() local
44 if (point_type == FXPT_MOVETO) { in BuildPath()
46 } else if (point_type == FXPT_LINETO) { in BuildPath()
54 } else if (point_type == FXPT_BEZIERTO) { in BuildPath()