/external/pdfium/third_party/agg23/ |
D | agg_curves.cpp | 73 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()
|
D | agg_basics.h | 263 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
|
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 | 197 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
|
/external/opencv3/modules/imgproc/test/ |
D | test_convhull.cpp | 276 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/ |
D | fpdf_transformpage.cpp | 242 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/ |
D | fx_skia_device.cpp | 142 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/ |
D | fx_ge_path.cpp | 470 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/ |
D | fx_win32_device.cpp | 770 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()
|
D | fx_win32_gdipext.cpp | 1153 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/ |
D | fx_agg_driver.cpp | 43 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()
|