Home
last modified time | relevance | path

Searched refs:m_pFontMap (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/fpdfsdk/formfiller/
Dcffl_textobject.cpp38 if (!m_pFontMap) { in MaybeCreateFontMap()
39 m_pFontMap = pdfium::MakeUnique<CBA_FontMap>( in MaybeCreateFontMap()
43 return m_pFontMap.get(); in MaybeCreateFontMap()
Dcffl_textobject.h31 std::unique_ptr<CBA_FontMap> m_pFontMap;
/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.h80 void SetFontMap(IPVT_FontMap* pFontMap) { m_pFontMap = pFontMap; } in SetFontMap()
166 UnownedPtr<IPVT_FontMap> m_pFontMap; variable
Dcpwl_edit_impl.cpp103 : CPDF_VariableText::Provider(pFontMap), m_pFontMap(pFontMap) { in CPWL_EditImpl_Provider()
104 ASSERT(m_pFontMap); in CPWL_EditImpl_Provider()
110 return m_pFontMap; in GetFontMap()
115 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetCharWidth()
121 : m_pFontMap->CharCodeFromUnicode(nFontIndex, word); in GetCharWidth()
130 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetTypeAscent()
135 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetTypeDescent()
142 return m_pFontMap->GetWordFontIndex(word, charset, nFontIndex); in GetWordFontIndex()
Dcpwl_list_impl.cpp107 m_pFontMap(nullptr), in CPWL_ListCtrl()
565 pListItem->SetFontMap(m_pFontMap.Get()); in AddItem()
Dcpwl_edit_impl.h460 IPVT_FontMap* m_pFontMap;
/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.cpp35 : m_pFontMap(pFontMap) { in Provider()
36 ASSERT(m_pFontMap); in Provider()
43 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetCharWidth()
55 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetTypeAscent()
60 RetainPtr<CPDF_Font> pPDFFont = m_pFontMap->GetPDFFont(nFontIndex); in GetTypeDescent()
67 if (RetainPtr<CPDF_Font> pDefFont = m_pFontMap->GetPDFFont(0)) { in GetWordFontIndex()
71 if (RetainPtr<CPDF_Font> pSysFont = m_pFontMap->GetPDFFont(1)) { in GetWordFontIndex()
Dcpdf_variabletext.h66 UnownedPtr<IPVT_FontMap> const m_pFontMap;