Home
last modified time | relevance | path

Searched refs:pPathSegment (Results 1 – 3 of 3) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/svdraw/
H A Dsvdpdf.cxx939 auto pPathSegment = pPageObject->getPathSegment(nSegmentIndex); in ImportPath() local
940 if (pPathSegment != nullptr) in ImportPath()
942 basegfx::B2DPoint aB2DPoint = pPathSegment->getPoint(); in ImportPath()
945 const bool bClose = pPathSegment->isClosed(); in ImportPath()
953 const vcl::pdf::PDFSegmentType eSegmentType = pPathSegment->getType(); in ImportPath()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/svdraw/
H A Dsvdpdf.cxx1038 FPDF_PATHSEGMENT pPathSegment = FPDFPath_GetPathSegment(pPageObject, nSegmentIndex); in ImportPath() local
1039 if (pPathSegment != nullptr) in ImportPath()
1042 if (!FPDFPathSegment_GetPoint(pPathSegment, &fx, &fy)) in ImportPath()
1051 const bool bClose = FPDFPathSegment_GetClose(pPathSegment); in ImportPath()
1059 const int nSegmentType = FPDFPathSegment_GetType(pPathSegment); in ImportPath()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/pdf/
H A DPDFiumLibrary.cxx196 PDFiumPathSegmentImpl(FPDF_PATHSEGMENT pPathSegment);
861 FPDF_PATHSEGMENT pPathSegment = FPDFPath_GetPathSegment(mpPageObject, index); in getPathSegment() local
862 if (pPathSegment) in getPathSegment()
864 pPDFiumPathSegment = std::make_unique<PDFiumPathSegmentImpl>(pPathSegment); in getPathSegment()
939 PDFiumPathSegmentImpl::PDFiumPathSegmentImpl(FPDF_PATHSEGMENT pPathSegment) in PDFiumPathSegmentImpl() argument
940 : mpPathSegment(pPathSegment) in PDFiumPathSegmentImpl()