Home
last modified time | relevance | path

Searched refs:FX_PATHPOINT (Results 1 – 16 of 16) 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()
68 std::vector<FX_PATHPOINT> m_Points;
Dcfx_pathdata.cpp160 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()
Dcfx_font.cpp85 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
Dcfx_renderdevice.cpp519 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
/external/pdfium/fpdfsdk/
Dfsdk_define.h31 class FX_PATHPOINT; variable
81 const FX_PATHPOINT* FXPathPointFromFPDFPathSegment(FPDF_PATHSEGMENT segment);
Dfpdfeditpath.cpp143 const std::vector<FX_PATHPOINT>& points = pPathObj->m_Path.GetPoints(); in FPDFPath_GetPathSegment()
Dfpdf_transformpage.cpp233 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath()
Dfpdfview.cpp373 const FX_PATHPOINT* FXPathPointFromFPDFPathSegment(FPDF_PATHSEGMENT segment) { in FXPathPointFromFPDFPathSegment()
374 return static_cast<const FX_PATHPOINT*>(segment); in FXPathPointFromFPDFPathSegment()
/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.h213 std::vector<FX_PATHPOINT> m_PathPoints;
Dcpdf_streamcontentparser.cpp1458 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/
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()
770 std::vector<FX_PATHPOINT>& pPoints = path.GetPoints(); in Draw()
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp172 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp1064 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp286 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()