Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcpdf_dest.cpp34 CPDF_Dest::CPDF_Dest(RetainPtr<const CPDF_Array> pArray) in CPDF_Dest() function in CPDF_Dest
37 CPDF_Dest::CPDF_Dest(const CPDF_Dest& that) = default;
39 CPDF_Dest::~CPDF_Dest() = default;
42 CPDF_Dest CPDF_Dest::Create(CPDF_Document* pDoc, in Create()
45 return CPDF_Dest(nullptr); in Create()
48 return CPDF_Dest(CPDF_NameTree::LookupNamedDest(pDoc, pDest->GetString())); in Create()
50 return CPDF_Dest(ToArray(pDest)); in Create()
53 int CPDF_Dest::GetDestPageIndex(CPDF_Document* pDoc) const { in GetDestPageIndex()
70 std::vector<float> CPDF_Dest::GetScrollPositionArray() const { in GetScrollPositionArray()
81 int CPDF_Dest::GetZoomMode() const { in GetZoomMode()
[all …]
Dcpdf_dest.h18 class CPDF_Dest {
20 explicit CPDF_Dest(RetainPtr<const CPDF_Array> pArray);
21 CPDF_Dest(const CPDF_Dest& that);
22 ~CPDF_Dest();
25 static CPDF_Dest Create(CPDF_Document* pDoc,
Dcpdf_dest_unittest.cpp29 CPDF_Dest dest(nullptr); in TEST()
34 CPDF_Dest dest(array); in TEST()
40 CPDF_Dest dest(array); in TEST()
52 CPDF_Dest dest(array); in TEST()
61 CPDF_Dest dest(array); in TEST()
Dcpdf_bookmark.cpp48 CPDF_Dest CPDF_Bookmark::GetDest(CPDF_Document* pDocument) const { in GetDest()
50 return CPDF_Dest(nullptr); in GetDest()
51 return CPDF_Dest::Create(pDocument, m_pDict->GetDirectObjectFor("Dest")); in GetDest()
Dcpdf_link.cpp26 CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) { in GetDest()
27 return CPDF_Dest::Create(pDoc, m_pDict->GetDirectObjectFor("Dest")); in GetDest()
Dcpdf_action.cpp56 CPDF_Dest CPDF_Action::GetDest(CPDF_Document* pDoc) const { in GetDest()
59 return CPDF_Dest(nullptr); in GetDest()
61 return CPDF_Dest::Create(pDoc, m_pDict->GetDirectObjectFor("D")); in GetDest()
Dcpdf_link.h25 CPDF_Dest GetDest(CPDF_Document* pDoc);
Dcpdf_bookmark.h28 CPDF_Dest GetDest(CPDF_Document* pDocument) const;
Dcpdf_action.h54 CPDF_Dest GetDest(CPDF_Document* pDoc) const;
/external/pdfium/fpdfsdk/
Dcpdfsdk_baannot.cpp422 CPDF_Dest CPDFSDK_BAAnnot::GetDestination() const { in GetDestination()
424 return CPDF_Dest(nullptr); in GetDestination()
428 return CPDF_Dest::Create(GetPageView()->GetPDFDocument(), in GetDestination()
Dfpdf_doc.cpp152 CPDF_Dest dest = cBookmark.GetDest(pDoc); in FPDFBookmark_GetDest()
254 CPDF_Dest destination(pdfium::WrapRetain(CPDFArrayFromFPDFDest(dest))); in FPDFDest_GetDestPageIndex()
265 CPDF_Dest destination(pdfium::WrapRetain(CPDFArrayFromFPDFDest(dest))); in FPDFDest_GetView()
286 CPDF_Dest destination(pdfium::WrapRetain(CPDFArrayFromFPDFDest(dest))); in FPDFDest_GetLocationInPage()
Dcpdfsdk_baannot.h78 CPDF_Dest GetDestination() const;
Dcpdfsdk_formfillenvironment.h137 bool DoActionDestination(const CPDF_Dest& dest);
Dcpdfsdk_formfillenvironment.cpp887 bool CPDFSDK_FormFillEnvironment::DoActionDestination(const CPDF_Dest& dest) { in DoActionDestination()
1068 CPDF_Dest MyDest = action.GetDest(pPDFDocument); in DoActionGoTo()
/external/pdfium/fxjs/
Dcjs_document.cpp1391 CPDF_Dest dest(std::move(dest_array)); in gotoNamedDest()