Home
last modified time | relevance | path

Searched refs:m_ImageCache (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_cache.cpp26 for (const auto& it : m_ImageCache) in ~CPDF_PageRenderCache()
33 size_t nCount = m_ImageCache.size(); in CacheOptimization()
36 for (const auto& it : m_ImageCache) { in CacheOptimization()
47 m_ImageCache[pCACHEINFO[i].pStream]->m_dwTimeCount = i; in CacheOptimization()
61 auto it = m_ImageCache.find(pStream); in ClearImageCacheEntry()
62 if (it == m_ImageCache.end()) in ClearImageCacheEntry()
67 m_ImageCache.erase(it); in ClearImageCacheEntry()
71 for (const auto& it : m_ImageCache) in EstimateSize()
88 const auto it = m_ImageCache.find(pStream); in GetCachedBitmap()
89 FX_BOOL bFound = it != m_ImageCache.end(); in GetCachedBitmap()
[all …]
/external/pdfium/core/include/fpdfapi/
Dfpdf_render.h265 std::map<CPDF_Stream*, CPDF_ImageCacheEntry*> m_ImageCache; variable