Searched refs:FX_PATHPOINT (Results 1 – 14 of 14) sorted by relevance
/external/pdfium/core/fxge/ |
D | cfx_pathdata.h | 16 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/ |
D | cfx_pathdata.cpp | 161 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()
|
D | cfx_font.cpp | 87 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
|
D | cfx_renderdevice.cpp | 491 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_path.h | 27 const std::vector<FX_PATHPOINT>& GetPoints() const;
|
D | cpdf_path.cpp | 15 const std::vector<FX_PATHPOINT>& CPDF_Path::GetPoints() const { in GetPoints()
|
D | cpdf_streamcontentparser.h | 207 FX_PATHPOINT* m_pPathPoints;
|
D | cpdf_streamcontentparser.cpp | 1462 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/ |
D | cfde_path.cpp | 17 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/ |
D | fpdf_transformpage.cpp | 240 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_renderstatus.cpp | 644 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/ |
D | fx_win32_device.cpp | 170 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.cpp | 276 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 281 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()
|