Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_bookmark.cpp70 CPDF_Dest CPDF_Bookmark::GetDest(CPDF_Document* pDocument) const { in GetDest()
72 return CPDF_Dest(); in GetDest()
76 return CPDF_Dest(); in GetDest()
80 return CPDF_Dest(name_tree.LookupNamedDest(pDocument, name)); in GetDest()
83 return CPDF_Dest(pArray); in GetDest()
84 return CPDF_Dest(); in GetDest()
Ddoc_link.cpp74 CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) { in GetDest()
77 return CPDF_Dest(); in GetDest()
82 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name)); in GetDest()
85 return CPDF_Dest(pArray); in GetDest()
86 return CPDF_Dest(); in GetDest()
Ddoc_action.cpp9 CPDF_Dest CPDF_Action::GetDest(CPDF_Document* pDoc) const { in GetDest()
11 return CPDF_Dest(); in GetDest()
15 return CPDF_Dest(); in GetDest()
19 return CPDF_Dest(); in GetDest()
24 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name)); in GetDest()
27 return CPDF_Dest(pArray); in GetDest()
28 return CPDF_Dest(); in GetDest()
Ddoc_basic.cpp10 int CPDF_Dest::GetPageIndex(CPDF_Document* pDoc) { in GetPageIndex()
24 FX_DWORD CPDF_Dest::GetPageObjNum() { in GetPageObjNum()
40 int CPDF_Dest::GetZoomMode() { in GetZoomMode()
57 FX_FLOAT CPDF_Dest::GetParam(int index) { in GetParam()
61 CFX_ByteString CPDF_Dest::GetRemoteName() { in GetRemoteName()
/external/pdfium/core/include/fpdfdoc/
Dfpdf_doc.h27 class CPDF_Dest; variable
98 CPDF_Dest GetDest(CPDF_Document* pDocument) const;
112 class CPDF_Dest {
114 CPDF_Dest() : m_pObj(nullptr) {} in CPDF_Dest() function
115 explicit CPDF_Dest(CPDF_Object* pObj) : m_pObj(pObj) {} in CPDF_Dest() function
225 CPDF_Dest GetDest(CPDF_Document* pDoc) const;
366 CPDF_Dest GetDest(CPDF_Document* pDoc);
/external/pdfium/fpdfsdk/src/
Dfpdfdoc.cpp114 CPDF_Dest dest = bookmark.GetDest(pDoc); in FPDFBookmark_GetDest()
201 CPDF_Dest dest(static_cast<CPDF_Array*>(pDict)); in FPDFDest_GetPageIndex()
Dfsdk_actionhandler.cpp424 CPDF_Dest MyDest = action.GetDest(pPDFDocument); in DoAction_GoTo()