Searched refs:FX_PATHPOINT (Results 1 – 15 of 15) sorted by relevance
/external/pdfium/core/fxge/ |
D | cfx_pathdata.h | 18 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;
|
D | cfx_pathdata.cpp | 179 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 …]
|
D | cfx_font.cpp | 84 std::vector<FX_PATHPOINT>& points = param->m_pPath->GetPoints(); in Outline_CheckEmptyContour()
|
D | cfx_renderdevice.cpp | 516 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in DrawPathWithBlend()
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_helpers.h | 42 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()
|
D | fpdf_transformpage.cpp | 71 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in OutputPath() 355 const std::vector<FX_PATHPOINT>& points = in FPDFClipPath_GetPathSegment()
|
D | fpdf_editpath.cpp | 84 const std::vector<FX_PATHPOINT>& points = pPathObj->path().GetPoints(); in FPDFPath_GetPathSegment()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_path.h | 25 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 | 220 std::vector<FX_PATHPOINT> m_PathPoints;
|
D | cpdf_streamcontentparser.cpp | 1444 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/ |
D | cpdf_rendershading.cpp | 583 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/ |
D | fx_win32_device.cpp | 155 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in SetPathToDC()
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.cpp | 1091 const std::vector<FX_PATHPOINT>& pPoints = pPathData->GetPoints(); in BuildPath()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 316 const std::vector<FX_PATHPOINT>& pPoints = pFPath->GetPoints(); in BuildPath()
|