Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxge/agg/agg23/
Dfx_agg_curves.cpp71 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()
Dagg_basics.h260 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
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;
Dfx_agg_vcgen_stroke.cpp195 const point_type& c = m_out_vertices[m_out_vertex++]; in vertex()
Dfx_agg_driver.cpp45 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/
Dfpdf_transformpage.cpp235 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/
Dfx_skia_device.cpp138 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/
Dfx_ge_path.cpp452 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/
Dfx_win32_device.cpp689 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()
Dfx_win32_gdipext.cpp898 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()