Searched refs:FX_PATHPOINT (Results 1 – 16 of 16) 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() 68 std::vector<FX_PATHPOINT> m_Points;
|
D | cfx_pathdata.cpp | 160 FX_PATHPOINT::FX_PATHPOINT() = default; 162 FX_PATHPOINT::FX_PATHPOINT(const CFX_PointF& point, FXPT_TYPE type, bool close) in FX_PATHPOINT() function in FX_PATHPOINT 165 FX_PATHPOINT::FX_PATHPOINT(const FX_PATHPOINT& other) = default; 167 FX_PATHPOINT::~FX_PATHPOINT() = default; 202 m_Points.push_back(FX_PATHPOINT(point, type, closeFigure)); in AppendPoint()
|
D | cfx_font.cpp | 85 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
|
D | cfx_renderdevice.cpp | 519 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
|
/external/pdfium/fpdfsdk/ |
D | fsdk_define.h | 31 class FX_PATHPOINT; variable 81 const FX_PATHPOINT* FXPathPointFromFPDFPathSegment(FPDF_PATHSEGMENT segment);
|
D | fpdfeditpath.cpp | 143 const std::vector<FX_PATHPOINT>& points = pPathObj->m_Path.GetPoints(); in FPDFPath_GetPathSegment()
|
D | fpdf_transformpage.cpp | 233 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath()
|
D | fpdfview.cpp | 373 const FX_PATHPOINT* FXPathPointFromFPDFPathSegment(FPDF_PATHSEGMENT segment) { in FXPathPointFromFPDFPathSegment() 374 return static_cast<const FX_PATHPOINT*>(segment); in FXPathPointFromFPDFPathSegment()
|
/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 | 213 std::vector<FX_PATHPOINT> m_PathPoints;
|
D | cpdf_streamcontentparser.cpp | 1458 m_PathPoints.push_back(FX_PATHPOINT(CFX_PointF(x, y), type, close)); in AddPathPoint() 1462 std::vector<FX_PATHPOINT> PathPoints; in AddPathObject()
|
/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() 770 std::vector<FX_PATHPOINT>& pPoints = path.GetPoints(); in Draw()
|
/external/pdfium/core/fxge/win32/ |
D | fx_win32_device.cpp | 172 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.cpp | 1064 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 286 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()
|