Home
last modified time | relevance | path

Searched refs:m_FontList (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxge/
Dfx_ge_linux.cpp97 auto it = m_FontList.find(g_LinuxGpFontList[index][i]); in MapFont()
98 if (it != m_FontList.end()) in MapFont()
105 auto it = m_FontList.find(name); in MapFont()
106 if (it != m_FontList.end()) in MapFont()
113 auto it = m_FontList.find(name); in MapFont()
114 if (it != m_FontList.end()) in MapFont()
121 auto it = m_FontList.find(name); in MapFont()
122 if (it != m_FontList.end()) in MapFont()
Dcfx_folderfontinfo.cpp228 if (pdfium::ContainsKey(m_FontList, facename)) in ReportFace()
269 m_FontList[facename] = std::move(pInfo); in ReportFace()
293 for (const auto& it : m_FontList) { in FindFont()
330 auto it = m_FontList.find(face); in GetFont()
331 return it != m_FontList.end() ? it->second.get() : nullptr; in GetFont()
Dcfx_folderfontinfo.h79 std::map<ByteString, std::unique_ptr<FontFaceInfo>> m_FontList; variable
/external/pdfium/core/fxge/apple/
Dfx_mac_imp.cpp89 auto it = m_FontList.find(new_face); in MapFont()
90 if (it != m_FontList.end()) in MapFont()
94 auto it = m_FontList.find(face); in MapFont()
95 if (it != m_FontList.end()) in MapFont()
117 it = m_FontList.find(face); in MapFont()
118 return it != m_FontList.end() ? it->second.get() : nullptr; in MapFont()