Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/
Dcfx_pathdata.h18 class FX_PATHPOINT {
20 FX_PATHPOINT();
21 FX_PATHPOINT(const CFX_PointF& point, FXPT_TYPE type, bool close);
22 FX_PATHPOINT(const FX_PATHPOINT& other);
23 ~FX_PATHPOINT();
49 const std::vector<FX_PATHPOINT>& GetPoints() const { return m_Points; } in GetPoints()
50 std::vector<FX_PATHPOINT>& GetPoints() { return m_Points; } in GetPoints()
72 std::vector<FX_PATHPOINT> m_Points;
Dcfx_pathdata.cpp179 FX_PATHPOINT::FX_PATHPOINT() = default;
181 FX_PATHPOINT::FX_PATHPOINT(const CFX_PointF& point, FXPT_TYPE type, bool close) in FX_PATHPOINT() function in FX_PATHPOINT
184 FX_PATHPOINT::FX_PATHPOINT(const FX_PATHPOINT& other) = default;
186 FX_PATHPOINT::~FX_PATHPOINT() = default;
223 m_Points.push_back(FX_PATHPOINT(point, type, closeFigure)); in AppendPoint()
395 const FX_PATHPOINT& next = m_Points[next_index]; in GetZeroAreaPath()
399 const FX_PATHPOINT& prev = m_Points[i - 1]; in GetZeroAreaPath()
400 const FX_PATHPOINT& cur = m_Points[i]; in GetZeroAreaPath()
404 const FX_PATHPOINT& start = use_prev ? prev : cur; in GetZeroAreaPath()
405 const FX_PATHPOINT& end = use_prev ? m_Points[next_index - 1] : next; in GetZeroAreaPath()
[all …]
Dcfx_font.cpp84 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
Dcfx_renderdevice.cpp516 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
/external/pdfium/fpdfsdk/
Dcpdfsdk_helpers.h42 class FX_PATHPOINT; variable
162 const FX_PATHPOINT* segment) { in FPDFPathSegmentFromFXPathPoint()
165 inline const FX_PATHPOINT* FXPathPointFromFPDFPathSegment( in FXPathPointFromFPDFPathSegment()
167 return reinterpret_cast<const FX_PATHPOINT*>(segment); in FXPathPointFromFPDFPathSegment()
Dfpdf_transformpage.cpp71 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath()
355 const std::vector<FX_PATHPOINT>& points = in FPDFClipPath_GetPathSegment()
Dfpdf_editpath.cpp84 const std::vector<FX_PATHPOINT>& points = pPathObj->path().GetPoints(); in FPDFPath_GetPathSegment()
/external/pdfium/core/fpdfapi/page/
Dcpdf_path.h25 const std::vector<FX_PATHPOINT>& GetPoints() const;
Dcpdf_path.cpp15 const std::vector<FX_PATHPOINT>& CPDF_Path::GetPoints() const { in GetPoints()
Dcpdf_streamcontentparser.h220 std::vector<FX_PATHPOINT> m_PathPoints;
Dcpdf_streamcontentparser.cpp1444 m_PathPoints.push_back(FX_PATHPOINT(CFX_PointF(x, y), type, close)); in AddPathPoint()
1448 std::vector<FX_PATHPOINT> PathPoints; in AddPathObject()
/external/pdfium/core/fpdfapi/render/
Dcpdf_rendershading.cpp583 void GetPoints(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) { in GetPoints()
595 void GetPointsReverse(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) { in GetPointsReverse()
704 std::vector<FX_PATHPOINT>& pPoints = path.GetPoints(); in Draw()
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp155 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp1091 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp316 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()