Home
last modified time | relevance | path

Searched refs:FX_PATHPOINT (Results 1 – 14 of 14) sorted by relevance

/external/pdfium/core/fxge/
Dcfx_pathdata.h16 class FX_PATHPOINT {
18 FX_PATHPOINT();
19 FX_PATHPOINT(const CFX_PointF& point, FXPT_TYPE type, bool close);
20 FX_PATHPOINT(const FX_PATHPOINT& other);
21 ~FX_PATHPOINT();
46 const std::vector<FX_PATHPOINT>& GetPoints() const { return m_Points; } in GetPoints()
47 std::vector<FX_PATHPOINT>& GetPoints() { return m_Points; } in GetPoints()
67 std::vector<FX_PATHPOINT> m_Points;
/external/pdfium/core/fxge/ge/
Dcfx_pathdata.cpp161 FX_PATHPOINT::FX_PATHPOINT() = default;
163 FX_PATHPOINT::FX_PATHPOINT(const CFX_PointF& point, FXPT_TYPE type, bool close) in FX_PATHPOINT() function in FX_PATHPOINT
166 FX_PATHPOINT::FX_PATHPOINT(const FX_PATHPOINT& other) = default;
168 FX_PATHPOINT::~FX_PATHPOINT() = default;
203 m_Points.push_back(FX_PATHPOINT(point, type, closeFigure)); in AppendPoint()
211 FX_PATHPOINT(CFX_PointF(left, bottom), FXPT_TYPE::MoveTo, false)); in AppendRect()
213 FX_PATHPOINT(CFX_PointF(left, top), FXPT_TYPE::LineTo, false)); in AppendRect()
215 FX_PATHPOINT(CFX_PointF(right, top), FXPT_TYPE::LineTo, false)); in AppendRect()
217 FX_PATHPOINT(CFX_PointF(right, bottom), FXPT_TYPE::LineTo, false)); in AppendRect()
219 FX_PATHPOINT(CFX_PointF(left, bottom), FXPT_TYPE::LineTo, true)); in AppendRect()
Dcfx_font.cpp87 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
Dcfx_renderdevice.cpp491 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
/external/pdfium/core/fpdfapi/page/
Dcpdf_path.h27 const std::vector<FX_PATHPOINT>& GetPoints() const;
Dcpdf_path.cpp15 const std::vector<FX_PATHPOINT>& CPDF_Path::GetPoints() const { in GetPoints()
Dcpdf_streamcontentparser.h207 FX_PATHPOINT* m_pPathPoints;
Dcpdf_streamcontentparser.cpp1462 FX_PATHPOINT* pNewPoints = FX_Alloc(FX_PATHPOINT, newsize); in AddPathPoint()
1465 m_PathAllocSize * sizeof(FX_PATHPOINT)); in AddPathPoint()
1496 FX_PATHPOINT& point = m_pPathPoints[i]; in AddPathObject()
/external/pdfium/xfa/fde/
Dcfde_path.cpp17 const std::vector<FX_PATHPOINT>& points = m_Path.GetPoints(); in FigureClosed()
158 std::vector<FX_PATHPOINT>& points = m_Path.GetPoints(); in AddLine()
/external/pdfium/fpdfsdk/
Dfpdf_transformpage.cpp240 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath()
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.cpp644 void GetPoints(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) { in GetPoints()
656 void GetPointsReverse(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) { in GetPointsReverse()
747 std::vector<FX_PATHPOINT>& pPoints = path.GetPoints(); in Draw()
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp170 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp276 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp281 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()