HomeSort by relevance Sort by last modified time
    Searched refs:m_PageMap (Results 1 - 4 of 4) sorted by null

  /external/pdfium/core/fpdfdoc/
cpdf_linklist.h 32 std::map<uint32_t, std::vector<CPDF_Dictionary*>> m_PageMap;
cpdf_linklist.cpp 22 auto it = m_PageMap.find(objnum);
23 if (it != m_PageMap.end())
27 std::vector<CPDF_Dictionary*>& page_link_list = m_PageMap[objnum];
  /external/pdfium/fpdfsdk/
cpdfsdk_formfillenvironment.cpp 46 // |m_PageMap| will try to access |m_pInterForm| when it cleans itself up.
48 m_PageMap.clear();
566 for (auto& it : m_PageMap) {
575 auto it = m_PageMap.find(pUnderlyingPage);
576 if (it != m_PageMap.end())
583 m_PageMap[pUnderlyingPage].reset(pPageView);
601 auto it = m_PageMap.find(pTempPage);
602 return it != m_PageMap.end() ? it->second.get() : nullptr;
650 auto it = m_PageMap.find(pUnderlyingPage);
651 if (it == m_PageMap.end()
    [all...]
cpdfsdk_formfillenvironment.h 109 int GetPageViewCount() const { return m_PageMap.size(); }
210 std::map<UnderlyingPageType*, std::unique_ptr<CPDFSDK_PageView>> m_PageMap;

Completed in 76 milliseconds