Home
last modified time | relevance | path

Searched refs:m_pFontMgr (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/core/fxge/android/
Dcfx_androidfontinfo.cpp15 CFX_AndroidFontInfo::CFX_AndroidFontInfo() : m_pFontMgr(nullptr) {} in CFX_AndroidFontInfo()
22 m_pFontMgr = pFontMgr; in Init()
35 if (!m_pFontMgr) in MapFont()
49 return m_pFontMgr->CreateFont(face, charset, dwStyle); in MapFont()
Dcfpf_skiadevicemodule.cpp36 if (!m_pFontMgr) { in GetFontMgr()
40 m_pFontMgr = std::move(pNewMgr); in GetFontMgr()
42 return m_pFontMgr.get(); in GetFontMgr()
Dcfpf_skiadevicemodule.h23 std::unique_ptr<CFPF_SkiaFontMgr> m_pFontMgr;
Dcfpf_skiafont.cpp23 : m_pFontMgr(pFontMgr), in CFPF_SkiaFont()
25 m_Face(m_pFontMgr->GetFontFace(m_pFont->path(), m_pFont->face_index())), in CFPF_SkiaFont()
Dcfx_androidfontinfo.h41 UnownedPtr<CFPF_SkiaFontMgr> m_pFontMgr;
Dcfpf_skiafont.h47 UnownedPtr<CFPF_SkiaFontMgr> const m_pFontMgr;
/external/pdfium/core/fxge/
Dcfx_fontmapper.cpp261 CFX_FontMapper::CFX_FontMapper(CFX_FontMgr* mgr) : m_pFontMgr(mgr) {} in CFX_FontMapper()
357 m_pFontMgr->GetBuiltinFont(iBaseFont); in UseInternalSubst()
360 m_pFontMgr->NewFixedFace(nullptr, font_data.value(), 0); in UseInternalSubst()
372 m_MMFaces[1] = m_pFontMgr->NewFixedFace( in UseInternalSubst()
373 nullptr, m_pFontMgr->GetBuiltinFont(14).value(), 0); in UseInternalSubst()
379 m_MMFaces[0] = m_pFontMgr->NewFixedFace( in UseInternalSubst()
380 nullptr, m_pFontMgr->GetBuiltinFont(15).value(), 0); in UseInternalSubst()
711 m_pFontMgr->GetCachedTTCFontDesc(ttc_size, checksum); in GetCachedTTCFace()
716 pFontDesc = m_pFontMgr->AddCachedTTCFontDesc( in GetCachedTTCFace()
727 pFace = m_pFontMgr->NewFixedFace( in GetCachedTTCFace()
[all …]
Dcfx_gemodule.h30 CFX_FontMgr* GetFontMgr() const { return m_pFontMgr.get(); } in GetFontMgr()
39 std::unique_ptr<CFX_FontMgr> const m_pFontMgr; variable
Dcfx_gemodule.cpp22 m_pFontMgr(pdfium::MakeUnique<CFX_FontMgr>()), in CFX_GEModule()
Dcfx_fontmapper.h108 UnownedPtr<CFX_FontMgr> const m_pFontMgr; variable
/external/pdfium/xfa/fxfa/
Dcxfa_ffapp.h39 CXFA_FontMgr* GetXFAFontMgr() { return &m_pFontMgr; } in GetXFAFontMgr()
57 CXFA_FontMgr m_pFontMgr; variable
/external/pdfium/xfa/fwl/theme/
Dcfwl_widgettp.cpp240 if (!m_pFontMgr) { in LoadFont()
241 m_pFontMgr = pdfium::MakeUnique<CFGAS_FontMgr>(); in LoadFont()
242 if (!m_pFontMgr->EnumFonts()) in LoadFont()
243 m_pFontMgr = nullptr; in LoadFont()
248 dwFontStyles, dwCodePage, m_pFontMgr.get()); in LoadFont()
Dcfwl_widgettp.h97 std::unique_ptr<CFGAS_FontMgr> m_pFontMgr; variable
/external/pdfium/xfa/fgas/font/
Dcfgas_gefont.cpp70 CFGAS_GEFont::CFGAS_GEFont(CFGAS_FontMgr* pFontMgr) : m_pFontMgr(pFontMgr) {} in CFGAS_GEFont()
250 if (!m_pFontMgr || !bRecursive) in GetGlyphIndexAndFont()
255 m_pFontMgr->GetFontByUnicode(wUnicode, GetFontStyles(), wsFamily.c_str()); in GetGlyphIndexAndFont()
258 pFont = m_pFontMgr->GetFontByUnicode(wUnicode, GetFontStyles(), nullptr); in GetGlyphIndexAndFont()
Dcfgas_pdffontmgr.cpp31 : m_pDoc(pDoc), m_pFontMgr(pFontMgr) { in CFGAS_PDFFontMgr()
71 return CFGAS_GEFont::LoadFont(pPDFFont, m_pFontMgr.Get()); in FindFont()
Dcfgas_pdffontmgr.h44 UnownedPtr<CFGAS_FontMgr> const m_pFontMgr; variable
Dcfgas_gefont.h84 ObservedPtr<CFGAS_FontMgr> const m_pFontMgr; variable