/external/pdfium/xfa/fgas/font/ |
D | cfgas_gefont.cpp | 23 RetainPtr<CFGAS_GEFont> CFGAS_GEFont::LoadFont(const wchar_t* pszFontFamily, in LoadFont() 28 auto pFont = pdfium::MakeRetain<CFGAS_GEFont>(pFontMgr); in LoadFont() 40 RetainPtr<CFGAS_GEFont> CFGAS_GEFont::LoadFont( in LoadFont() 43 auto pFont = pdfium::MakeRetain<CFGAS_GEFont>(pFontMgr); in LoadFont() 51 RetainPtr<CFGAS_GEFont> CFGAS_GEFont::LoadFont( in LoadFont() 54 auto pFont = pdfium::MakeRetain<CFGAS_GEFont>(pFontMgr); in LoadFont() 61 RetainPtr<CFGAS_GEFont> CFGAS_GEFont::LoadStockFont( in LoadStockFont() 67 return stock_font ? CFGAS_GEFont::LoadFont(stock_font, pMgr) : nullptr; in LoadStockFont() 70 CFGAS_GEFont::CFGAS_GEFont(CFGAS_FontMgr* pFontMgr) : m_pFontMgr(pFontMgr) {} in CFGAS_GEFont() function in CFGAS_GEFont 72 CFGAS_GEFont::~CFGAS_GEFont() = default; [all …]
|
D | cfgas_gefont.h | 28 class CFGAS_GEFont final : public Retainable { 33 static RetainPtr<CFGAS_GEFont> LoadFont(const wchar_t* pszFontFamily, 37 static RetainPtr<CFGAS_GEFont> LoadFont(const RetainPtr<CPDF_Font>& pPDFFont, 39 static RetainPtr<CFGAS_GEFont> LoadFont( 43 static RetainPtr<CFGAS_GEFont> LoadStockFont(CPDF_Document* pDoc, 56 RetainPtr<CFGAS_GEFont> GetSubstFont(int32_t iGlyphIndex); 64 explicit CFGAS_GEFont(CFGAS_FontMgr* pFontMgr); 65 ~CFGAS_GEFont() override; 76 std::pair<int32_t, RetainPtr<CFGAS_GEFont>> GetGlyphIndexAndFont( 88 std::vector<RetainPtr<CFGAS_GEFont>> m_SubstFonts; [all …]
|
D | cfgas_fontmgr.h | 24 class CFGAS_GEFont; variable 104 RetainPtr<CFGAS_GEFont> GetFontByCodePage(uint16_t wCodePage, 107 RetainPtr<CFGAS_GEFont> GetFontByUnicode(wchar_t wUnicode, 110 RetainPtr<CFGAS_GEFont> LoadFont(const wchar_t* pszFontFamily, 113 void RemoveFont(const RetainPtr<CFGAS_GEFont>& pFont); 118 RetainPtr<CFGAS_GEFont> GetFontByUnicodeImpl(wchar_t wUnicode, 144 RetainPtr<CFGAS_GEFont> LoadFontInternal(const WideString& wsFaceName, 148 std::map<uint32_t, std::vector<RetainPtr<CFGAS_GEFont>>> m_Hash2Fonts; 158 std::map<RetainPtr<CFGAS_GEFont>, RetainPtr<IFX_SeekableReadStream>>
|
D | cfgas_pdffontmgr.h | 17 class CFGAS_GEFont; variable 25 RetainPtr<CFGAS_GEFont> GetFont(WideStringView wsFontFamily, 30 RetainPtr<CFGAS_GEFont> FindFont(const ByteString& strFamilyName, 45 std::map<ByteString, RetainPtr<CFGAS_GEFont>> m_FontMap;
|
D | cfgas_defaultfontmanager.cpp | 14 RetainPtr<CFGAS_GEFont> CFGAS_DefaultFontManager::GetFont( in GetFont() 19 RetainPtr<CFGAS_GEFont> pFont = in GetFont() 58 RetainPtr<CFGAS_GEFont> CFGAS_DefaultFontManager::GetDefaultFont( in GetDefaultFont() 62 RetainPtr<CFGAS_GEFont> pFont = in GetDefaultFont()
|
D | cfgas_defaultfontmanager.h | 13 class CFGAS_GEFont; variable 18 static RetainPtr<CFGAS_GEFont> GetFont(CFGAS_FontMgr* pFontMgr, 21 static RetainPtr<CFGAS_GEFont> GetDefaultFont(CFGAS_FontMgr* pFontMgr,
|
D | cfgas_fontmgr.cpp | 33 bool VerifyUnicode(const RetainPtr<CFGAS_GEFont>& pFont, wchar_t wcUnicode) { in VerifyUnicode() 183 RetainPtr<CFGAS_GEFont> CFGAS_FontMgr::GetFontByUnicodeImpl( in GetFontByUnicodeImpl() 201 RetainPtr<CFGAS_GEFont> pFont = in GetFontByUnicodeImpl() 202 CFGAS_GEFont::LoadFont(pFontFace, dwFontStyles, newCodePage, this); in GetFontByUnicodeImpl() 652 RetainPtr<CFGAS_GEFont> CFGAS_FontMgr::GetFontByUnicodeImpl( in GetFontByUnicodeImpl() 672 RetainPtr<CFGAS_GEFont> pFont = in GetFontByUnicodeImpl() 685 RetainPtr<CFGAS_GEFont> CFGAS_FontMgr::LoadFontInternal( in LoadFontInternal() 697 RetainPtr<CFGAS_GEFont> pFont = in LoadFontInternal() 698 CFGAS_GEFont::LoadFont(std::move(pInternalFont), this); in LoadFontInternal() 778 RetainPtr<CFGAS_GEFont> CFGAS_FontMgr::GetFontByCodePage( in GetFontByCodePage() [all …]
|
D | cfgas_pdffontmgr.cpp | 38 RetainPtr<CFGAS_GEFont> CFGAS_PDFFontMgr::FindFont(const ByteString& strPsName, in FindFont() 71 return CFGAS_GEFont::LoadFont(pPDFFont, m_pFontMgr.Get()); in FindFont() 76 RetainPtr<CFGAS_GEFont> CFGAS_PDFFontMgr::GetFont(WideStringView wsFontFamily, in GetFont() 89 RetainPtr<CFGAS_GEFont> pFont = in GetFont()
|
/external/pdfium/xfa/fwl/theme/ |
D | cfwl_widgettp.h | 21 class CFGAS_GEFont; variable 32 const RetainPtr<CFGAS_GEFont>& GetFont() const; 76 RetainPtr<CFGAS_GEFont> m_pFDEFont; 91 RetainPtr<CFGAS_GEFont> GetFont() const; 98 RetainPtr<CFGAS_GEFont> m_pFont; 106 RetainPtr<CFGAS_GEFont> FindFont(WideStringView wsFontFamily,
|
D | cfwl_widgettp.cpp | 57 const RetainPtr<CFGAS_GEFont>& CFWL_WidgetTP::GetFont() const { in GetFont() 247 m_pFont = CFGAS_GEFont::LoadFont(wsFontFamily.unterminated_c_str(), in LoadFont() 252 RetainPtr<CFGAS_GEFont> CFWL_FontData::GetFont() const { in GetFont() 271 RetainPtr<CFGAS_GEFont> CFWL_FontManager::FindFont(WideStringView wsFontFamily, in FindFont()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_fontmgr.h | 14 class CFGAS_GEFont; variable 22 RetainPtr<CFGAS_GEFont> GetFont(CXFA_FFDoc* hDoc, 27 std::map<ByteString, RetainPtr<CFGAS_GEFont>> m_FontMap;
|
D | cxfa_fontmgr.cpp | 27 RetainPtr<CFGAS_GEFont> CXFA_FontMgr::GetFont(CXFA_FFDoc* hDoc, in GetFont() 38 RetainPtr<CFGAS_GEFont> pFont; in GetFont() 58 pFont = CFGAS_GEFont::LoadStockFont( in GetFont()
|
D | cxfa_fwltheme.h | 42 RetainPtr<CFGAS_GEFont> GetFont( 64 RetainPtr<CFGAS_GEFont> m_pCalendarFont;
|
D | cxfa_textparser.h | 20 class CFGAS_GEFont; variable 56 RetainPtr<CFGAS_GEFont> GetFont(CXFA_FFDoc* doc,
|
/external/pdfium/xfa/fde/ |
D | cfde_textout.h | 20 class CFGAS_GEFont; variable 40 const RetainPtr<CFGAS_GEFont>& pFont, 48 void SetFont(const RetainPtr<CFGAS_GEFont>& pFont); 101 RetainPtr<CFGAS_GEFont> m_pFont;
|
D | cfde_texteditengine.h | 19 class CFGAS_GEFont; variable 110 void SetFont(RetainPtr<CFGAS_GEFont> font); 111 RetainPtr<CFGAS_GEFont> GetFont() const; 210 RetainPtr<CFGAS_GEFont> font_;
|
D | cfde_textout.cpp | 43 const RetainPtr<CFGAS_GEFont>& pFont, in DrawString() 70 RetainPtr<CFGAS_GEFont> pCurFont; in DrawString() 74 RetainPtr<CFGAS_GEFont> pSTFont = in DrawString() 135 void CFDE_TextOut::SetFont(const RetainPtr<CFGAS_GEFont>& pFont) { in SetFont()
|
/external/pdfium/xfa/fgas/layout/ |
D | cfx_break.h | 16 class CFGAS_GEFont; variable 42 void SetFont(const RetainPtr<CFGAS_GEFont>& pFont); 89 RetainPtr<CFGAS_GEFont> m_pFont;
|
D | cfx_textpiece.h | 16 class CFGAS_GEFont; variable 31 RetainPtr<CFGAS_GEFont> pFont;
|
D | cfx_txtbreak_unittest.cpp | 22 CFGAS_GEFont::LoadFont(L"Arial Black", 0, 0, GetGlobalFontManager()); in SetUp() 33 RetainPtr<CFGAS_GEFont> font_;
|
D | cfx_rtfbreak_unittest.cpp | 25 CFGAS_GEFont::LoadFont(L"Arial Black", 0, 0, GetGlobalFontManager()); in SetUp() 36 RetainPtr<CFGAS_GEFont> font_;
|
D | cfx_txtbreak.h | 17 class CFGAS_GEFont; variable 54 RetainPtr<CFGAS_GEFont> pFont;
|
D | cfx_rtfbreak.h | 18 class CFGAS_GEFont; variable
|
/external/pdfium/xfa/fwl/ |
D | ifwl_themeprovider.h | 14 class CFGAS_GEFont; variable 32 virtual RetainPtr<CFGAS_GEFont> GetFont(
|
/external/pdfium/testing/fuzzers/ |
D | pdf_bidi_fuzzer.cc | 25 rtf_break.SetFont(CFGAS_GEFont::LoadFont(std::move(font), fontmgr.get())); in LLVMFuzzerTestOneInput()
|