Searched refs:point_type (Results 1 – 11 of 11) sorted by relevance
/external/pdfium/core/src/fxge/agg/agg23/ |
D | fx_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 | 260 struct point_type { struct 263 point_type() {} in point_type() argument 264 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} in x() argument 266 struct point_type_flag : public point_type { 272 … 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 | fx_agg_vcgen_stroke.cpp | 195 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
|
D | fx_agg_driver.cpp | 45 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in BuildPath() local 46 if (point_type == FXPT_MOVETO) { in BuildPath() 48 } else if (point_type == FXPT_LINETO) { in BuildPath() 54 } else if (point_type == FXPT_BEZIERTO) { in BuildPath()
|
/external/pdfium/fpdfsdk/src/ |
D | fpdf_transformpage.cpp | 235 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in OutputPath() local 236 if (point_type == FXPT_MOVETO) in OutputPath() 238 else if (point_type == FXPT_BEZIERTO) { in OutputPath() 246 } else if (point_type == FXPT_LINETO) { in OutputPath()
|
/external/pdfium/core/src/fxge/skia/ |
D | fx_skia_device.cpp | 138 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in BuildPath() local 139 if (point_type == FXPT_MOVETO) { in BuildPath() 141 } else if (point_type == FXPT_LINETO) { in BuildPath() 152 } else if (point_type == FXPT_BEZIERTO) { in BuildPath()
|
/external/pdfium/core/src/fxge/ge/ |
D | fx_ge_path.cpp | 452 int point_type = m_pPoints[i].m_Flag & FXPT_TYPE; in GetZeroAreaPath() local 453 if (point_type == FXPT_MOVETO) { in GetZeroAreaPath() 455 } else if (point_type == FXPT_LINETO) { in GetZeroAreaPath() 492 } else if (point_type == FXPT_BEZIERTO) { in GetZeroAreaPath()
|
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_device.cpp | 689 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in _SetPathToDC() local 690 if(point_type == PT_MOVETO) { in _SetPathToDC() 692 } else if(point_type == PT_LINETO) { in _SetPathToDC() 697 } else if(point_type == PT_BEZIERTO) { in _SetPathToDC()
|
D | fx_win32_gdipext.cpp | 898 int point_type = pPoints[i].m_Flag & FXPT_TYPE; in DrawPath() local 899 if(point_type == FXPT_MOVETO) { in DrawPath() 904 } else if (point_type == FXPT_LINETO) { in DrawPath() 914 } else if (point_type == FXPT_BEZIERTO) { in DrawPath()
|