Searched refs:m_PageMap (Results 1 – 4 of 4) sorted by relevance
22 auto it = m_PageMap.find(objnum); in GetPageLinks()23 if (it != m_PageMap.end()) in GetPageLinks()27 std::vector<CPDF_Dictionary*>& page_link_list = m_PageMap[objnum]; in GetPageLinks()
32 std::map<uint32_t, std::vector<CPDF_Dictionary*>> m_PageMap; variable
49 m_PageMap.clear(); in ~CPDFSDK_FormFillEnvironment()541 for (auto& it : m_PageMap) { in ClearAllFocusedAnnots()550 auto it = m_PageMap.find(pUnderlyingPage); in GetPageView()551 if (it != m_PageMap.end()) in GetPageView()559 m_PageMap[pUnderlyingPage] = std::move(pNew); in GetPageView()577 auto it = m_PageMap.find(pTempPage); in GetPageView()578 return it != m_PageMap.end() ? it->second.get() : nullptr; in GetPageView()620 auto it = m_PageMap.find(pUnderlyingPage); in RemovePageView()621 if (it == m_PageMap.end()) in RemovePageView()642 m_PageMap.erase(it); in RemovePageView()[all …]
124 int GetPageViewCount() const { return m_PageMap.size(); } in GetPageViewCount()227 std::map<UnderlyingPageType*, std::unique_ptr<CPDFSDK_PageView>> m_PageMap; variable