Home
last modified time | relevance | path

Searched refs:CPDF_Bookmark (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_bookmark.cpp17 CPDF_Bookmark::CPDF_Bookmark() {} in CPDF_Bookmark() function in CPDF_Bookmark
19 CPDF_Bookmark::CPDF_Bookmark(const CPDF_Bookmark& that) = default;
21 CPDF_Bookmark::CPDF_Bookmark(CPDF_Dictionary* pDict) : m_pDict(pDict) {} in CPDF_Bookmark() function in CPDF_Bookmark
23 CPDF_Bookmark::~CPDF_Bookmark() {} in ~CPDF_Bookmark()
25 uint32_t CPDF_Bookmark::GetColorRef() const { in GetColorRef()
39 uint32_t CPDF_Bookmark::GetFontStyle() const { in GetFontStyle()
43 WideString CPDF_Bookmark::GetTitle() const { in GetTitle()
64 CPDF_Dest CPDF_Bookmark::GetDest(CPDF_Document* pDocument) const { in GetDest()
81 CPDF_Action CPDF_Bookmark::GetAction() const { in GetAction()
Dcpdf_bookmarktree.cpp15 CPDF_Bookmark CPDF_BookmarkTree::GetFirstChild( in GetFirstChild()
16 const CPDF_Bookmark& parent) const { in GetFirstChild()
19 return CPDF_Bookmark(pParentDict->GetDictFor("First")); in GetFirstChild()
23 return CPDF_Bookmark(); in GetFirstChild()
26 return pOutlines ? CPDF_Bookmark(pOutlines->GetDictFor("First")) in GetFirstChild()
27 : CPDF_Bookmark(); in GetFirstChild()
30 CPDF_Bookmark CPDF_BookmarkTree::GetNextSibling( in GetNextSibling()
31 const CPDF_Bookmark& bookmark) const { in GetNextSibling()
34 return CPDF_Bookmark(); in GetNextSibling()
37 return pNext == pDict ? CPDF_Bookmark() : CPDF_Bookmark(pNext); in GetNextSibling()
Dcpdf_bookmark.h18 class CPDF_Bookmark {
20 CPDF_Bookmark();
21 CPDF_Bookmark(const CPDF_Bookmark& that);
22 explicit CPDF_Bookmark(CPDF_Dictionary* pDict);
23 ~CPDF_Bookmark();
Dcpdf_bookmarktree.h20 CPDF_Bookmark GetFirstChild(const CPDF_Bookmark& parent) const;
21 CPDF_Bookmark GetNextSibling(const CPDF_Bookmark& bookmark) const;
/external/pdfium/fpdfsdk/
Dfpdfdoc.cpp25 CPDF_Bookmark FindBookmark(const CPDF_BookmarkTree& tree, in FindBookmark()
26 CPDF_Bookmark bookmark, in FindBookmark()
31 return CPDF_Bookmark(); in FindBookmark()
41 CPDF_Bookmark child = tree.GetFirstChild(bookmark); in FindBookmark()
44 CPDF_Bookmark found = FindBookmark(tree, child, title, visited); in FindBookmark()
49 return CPDF_Bookmark(); in FindBookmark()
71 CPDF_Bookmark bookmark = in FPDFBookmark_GetFirstChild()
72 CPDF_Bookmark(ToDictionary(static_cast<CPDF_Object*>(pDict))); in FPDFBookmark_GetFirstChild()
84 CPDF_Bookmark bookmark = in FPDFBookmark_GetNextSibling()
85 CPDF_Bookmark(ToDictionary(static_cast<CPDF_Object*>(pDict))); in FPDFBookmark_GetNextSibling()
[all …]
Dfsdk_actionhandler.h20 class CPDF_Bookmark; variable
37 bool DoAction_BookMark(CPDF_Bookmark* pBookMark,
79 CPDF_Bookmark* pBookmark,
Dfsdk_actionhandler.cpp80 CPDF_Bookmark* pBookMark, in DoAction_BookMark()
311 CPDF_Bookmark* pBookmark, in ExecuteBookMark()
/external/pdfium/fxjs/
Dcjs_eventhandler.h17 class CPDF_Bookmark; variable
134 void OnBookmark_MouseUp(CPDF_Bookmark* pBookMark);
192 UnownedPtr<CPDF_Bookmark> m_pTargetBookMark;
Dijs_event_context.h13 class CPDF_Bookmark; variable
120 virtual void OnBookmark_MouseUp(CPDF_Bookmark* pBookMark) = 0;
Dcjs_event_context_stub.h109 void OnBookmark_MouseUp(CPDF_Bookmark* pBookMark) override {} in OnBookmark_MouseUp()
Dcjs_event_context.h117 void OnBookmark_MouseUp(CPDF_Bookmark* pBookMark) override;
Dcjs_event_context.cpp257 void CJS_EventContext::OnBookmark_MouseUp(CPDF_Bookmark* pBookMark) { in OnBookmark_MouseUp()
Dcjs_eventhandler.cpp347 void CJS_EventHandler::OnBookmark_MouseUp(CPDF_Bookmark* pBookMark) { in OnBookmark_MouseUp()