Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/win32/
Dcfx_psrenderer.cpp531 for (const auto& pPSFont : m_PSFontList) { in FindPSFontGlyph()
552 if (m_PSFontList.empty() || m_PSFontList.back()->m_nGlyphs == 256) { in FindPSFontGlyph()
553 m_PSFontList.push_back(pdfium::MakeUnique<CPSFont>()); in FindPSFontGlyph()
554 m_PSFontList.back()->m_nGlyphs = 0; in FindPSFontGlyph()
565 buf << "/X" << static_cast<uint32_t>(m_PSFontList.size() - 1) in FindPSFontGlyph()
570 *ps_fontnum = m_PSFontList.size() - 1; in FindPSFontGlyph()
571 CPSFont* pPSFont = m_PSFontList[*ps_fontnum].get(); in FindPSFontGlyph()
Dcfx_psrenderer.h96 std::vector<std::unique_ptr<CPSFont>> m_PSFontList; variable