/external/pdfium/xfa/fxgraphics/ |
D | cxfa_gepath.cpp | 25 data_.AppendPoint(point, FXPT_TYPE::MoveTo, false); in MoveTo() 29 data_.AppendPoint(point, FXPT_TYPE::LineTo, false); in LineTo() 35 data_.AppendPoint(c1, FXPT_TYPE::BezierTo, false); in BezierTo() 36 data_.AppendPoint(c2, FXPT_TYPE::BezierTo, false); in BezierTo() 37 data_.AppendPoint(to, FXPT_TYPE::BezierTo, false); in BezierTo() 65 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal() 69 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal() 73 data_.AppendPoint(bezier, FXPT_TYPE::BezierTo, false); in ArcToInternal() 77 data_.AppendPoint(p1, FXPT_TYPE::MoveTo, false); in AddLine() 78 data_.AppendPoint(p2, FXPT_TYPE::LineTo, false); in AddLine() [all …]
|
/external/pdfium/core/fpdfapi/edit/ |
D | cpdf_pagecontentgenerator_unittest.cpp | 64 pPathObj->m_Path.AppendPoint(CFX_PointF(0, 0), FXPT_TYPE::MoveTo, false); in TEST_F() 65 pPathObj->m_Path.AppendPoint(CFX_PointF(5.2f, 0), FXPT_TYPE::LineTo, false); in TEST_F() 66 pPathObj->m_Path.AppendPoint(CFX_PointF(5.2f, 3.78f), FXPT_TYPE::LineTo, in TEST_F() 68 pPathObj->m_Path.AppendPoint(CFX_PointF(0, 3.78f), FXPT_TYPE::LineTo, true); in TEST_F() 79 pPathObj->m_Path.AppendPoint(CFX_PointF(3.102f, 4.67f), FXPT_TYPE::MoveTo, in TEST_F() 81 pPathObj->m_Path.AppendPoint(CFX_PointF(5.45f, 0.29f), FXPT_TYPE::LineTo, in TEST_F() 83 pPathObj->m_Path.AppendPoint(CFX_PointF(4.24f, 3.15f), FXPT_TYPE::BezierTo, in TEST_F() 85 pPathObj->m_Path.AppendPoint(CFX_PointF(4.65f, 2.98f), FXPT_TYPE::BezierTo, in TEST_F() 87 pPathObj->m_Path.AppendPoint(CFX_PointF(3.456f, 0.24f), FXPT_TYPE::BezierTo, in TEST_F() 89 pPathObj->m_Path.AppendPoint(CFX_PointF(10.6f, 11.15f), FXPT_TYPE::LineTo, in TEST_F() [all …]
|
/external/pdfium/core/fxge/ |
D | cfx_renderdevice.cpp | 714 path.AppendPoint(ptMoveTo, FXPT_TYPE::MoveTo, false); in DrawCosmeticLine() 715 path.AppendPoint(ptLineTo, FXPT_TYPE::LineTo, false); in DrawCosmeticLine() 1147 path.AppendPoint(pPts[0], FXPT_TYPE::MoveTo, false); in DrawFillArea() 1149 path.AppendPoint(pPts[i], FXPT_TYPE::LineTo, false); in DrawFillArea() 1174 path.AppendPoint(ptMoveTo, FXPT_TYPE::MoveTo, false); in DrawStrokeLine() 1175 path.AppendPoint(ptLineTo, FXPT_TYPE::LineTo, false); in DrawStrokeLine() 1251 path.AppendPoint( in DrawBorder() 1254 path.AppendPoint( in DrawBorder() 1257 path.AppendPoint( in DrawBorder() 1260 path.AppendPoint( in DrawBorder() [all …]
|
D | cfx_pathdata.cpp | 199 void CFX_PathData::AppendPoint(const CFX_PointF& point, in AppendPoint() function in CFX_PathData 208 AppendPoint(pt1, FXPT_TYPE::MoveTo, false); in AppendLine() 210 AppendPoint(pt2, FXPT_TYPE::LineTo, false); in AppendLine() 319 NewPath->AppendPoint( in GetZeroAreaPath() 345 t_path.AppendPoint(m_Points[mid - i].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath() 346 t_path.AppendPoint(m_Points[mid - i - 1].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath() 378 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath() 379 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath() 393 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false); in GetZeroAreaPath() 394 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo, in GetZeroAreaPath() [all …]
|
D | cfx_font.cpp | 108 param->m_pPath->AppendPoint( in Outline_MoveTo() 120 param->m_pPath->AppendPoint( in Outline_LineTo() 134 param->m_pPath->AppendPoint( in Outline_ConicTo() 141 param->m_pPath->AppendPoint( in Outline_ConicTo() 146 param->m_pPath->AppendPoint( in Outline_ConicTo() 161 param->m_pPath->AppendPoint(CFX_PointF(control1->x / param->m_CoordUnit, in Outline_CubicTo() 165 param->m_pPath->AppendPoint(CFX_PointF(control2->x / param->m_CoordUnit, in Outline_CubicTo() 169 param->m_pPath->AppendPoint( in Outline_CubicTo()
|
D | cfx_pathdata.h | 64 void AppendPoint(const CFX_PointF& pos, FXPT_TYPE type, bool closeFigure);
|
/external/pdfium/fpdfsdk/ |
D | fpdfeditpath.cpp | 41 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::MoveTo, false); in FPDFPageObj_CreateNewPath() 154 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::MoveTo, false); in FPDFPath_MoveTo() 166 pPathObj->m_Path.AppendPoint(CFX_PointF(x, y), FXPT_TYPE::LineTo, false); in FPDFPath_LineTo() 182 pPathObj->m_Path.AppendPoint(CFX_PointF(x1, y1), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo() 183 pPathObj->m_Path.AppendPoint(CFX_PointF(x2, y2), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo() 184 pPathObj->m_Path.AppendPoint(CFX_PointF(x3, y3), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_path.cpp | 56 void CPDF_Path::AppendPoint(const CFX_PointF& point, in AppendPoint() function in CPDF_Path 60 data.AppendPoint(point, type, close); in AppendPoint()
|
D | cpdf_path.h | 40 void AppendPoint(const CFX_PointF& point, FXPT_TYPE type, bool close);
|
D | cpdf_streamcontentparser.cpp | 1484 Path.AppendPoint(point.m_Point, point.m_Type, point.m_CloseFigure); in AddPathObject()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_caret.cpp | 47 path.AppendPoint(CFX_PointF(fCaretX, fCaretBottom), FXPT_TYPE::MoveTo, false); in DrawThisAppearance() 48 path.AppendPoint(CFX_PointF(fCaretX, fCaretTop), FXPT_TYPE::LineTo, false); in DrawThisAppearance()
|
D | cpwl_combo_box.cpp | 121 path.AppendPoint(pt1, FXPT_TYPE::MoveTo, false); in DrawThisAppearance() 122 path.AppendPoint(pt2, FXPT_TYPE::LineTo, false); in DrawThisAppearance() 123 path.AppendPoint(pt3, FXPT_TYPE::LineTo, false); in DrawThisAppearance() 124 path.AppendPoint(pt1, FXPT_TYPE::LineTo, false); in DrawThisAppearance()
|
D | cpwl_edit.cpp | 221 path.AppendPoint( in DrawThisAppearance() 227 path.AppendPoint( in DrawThisAppearance() 251 path.AppendPoint( in DrawThisAppearance() 257 path.AppendPoint( in DrawThisAppearance()
|
D | cpwl_scroll_bar.cpp | 177 path.AppendPoint(pt1, FXPT_TYPE::MoveTo, false); in DrawThisAppearance() 178 path.AppendPoint(pt2, FXPT_TYPE::LineTo, false); in DrawThisAppearance() 179 path.AppendPoint(pt3, FXPT_TYPE::LineTo, false); in DrawThisAppearance() 180 path.AppendPoint(pt1, FXPT_TYPE::LineTo, false); in DrawThisAppearance()
|
/external/pdfium/fpdfsdk/formfiller/ |
D | cffl_interactiveformfiller.cpp | 78 path.AppendPoint(CFX_PointF(rcFocus.left, rcFocus.top), FXPT_TYPE::MoveTo, in OnDraw() 80 path.AppendPoint(CFX_PointF(rcFocus.left, rcFocus.bottom), in OnDraw() 82 path.AppendPoint(CFX_PointF(rcFocus.right, rcFocus.bottom), in OnDraw() 84 path.AppendPoint(CFX_PointF(rcFocus.right, rcFocus.top), FXPT_TYPE::LineTo, in OnDraw() 86 path.AppendPoint(CFX_PointF(rcFocus.left, rcFocus.top), FXPT_TYPE::LineTo, in OnDraw()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 854 patch.path.AppendPoint( in DrawCoonPatchMeshes()
|