Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/formfiller/
Dcffl_combobox.cpp19 : CFFL_FormFiller(pApp, pAnnot), m_pFontMap(nullptr) { in CFFL_ComboBox()
33 delete m_pFontMap; in ~CFFL_ComboBox()
44 if (!m_pFontMap) in GetCreateParam()
45 m_pFontMap = new CBA_FontMap(m_pWidget, GetSystemHandler()); in GetCreateParam()
46 cp.pFontMap = m_pFontMap; in GetCreateParam()
Dcffl_listbox.cpp40 if (!m_pFontMap) { in GetCreateParam()
41 m_pFontMap = pdfium::MakeUnique<CBA_FontMap>( in GetCreateParam()
44 cp.pFontMap = m_pFontMap.get(); in GetCreateParam()
Dcffl_textfield.cpp75 if (!m_pFontMap) { in GetCreateParam()
76 m_pFontMap = pdfium::MakeUnique<CBA_FontMap>( in GetCreateParam()
79 cp.pFontMap = m_pFontMap.get(); in GetCreateParam()
Dcffl_listbox.h39 std::unique_ptr<CBA_FontMap> m_pFontMap;
Dcffl_combobox.h59 CBA_FontMap* m_pFontMap; variable
Dcffl_textfield.h63 std::unique_ptr<CBA_FontMap> m_pFontMap;
/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.cpp33 : m_pFontMap(pFontMap) { in Provider()
34 ASSERT(m_pFontMap); in Provider()
41 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) { in GetCharWidth()
50 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeAscent()
56 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeDescent()
64 if (CPDF_Font* pDefFont = m_pFontMap->GetPDFFont(0)) { in GetWordFontIndex()
68 if (CPDF_Font* pSysFont = m_pFontMap->GetPDFFont(1)) { in GetWordFontIndex()
Dcpdf_variabletext.h79 IPVT_FontMap* const m_pFontMap;
/external/pdfium/fpdfsdk/fxedit/
Dfxet_edit.cpp151 : CPDF_VariableText::Provider(pFontMap), m_pFontMap(pFontMap) { in CFX_Edit_Provider()
152 ASSERT(m_pFontMap); in CFX_Edit_Provider()
158 return m_pFontMap; in GetFontMap()
162 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) { in GetCharWidth()
168 charcode = m_pFontMap->CharCodeFromUnicode(nFontIndex, word); in GetCharWidth()
178 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeAscent()
185 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeDescent()
194 return m_pFontMap->GetWordFontIndex(word, charset, nFontIndex); in GetWordFontIndex()
Dfxet_list.cpp199 m_pFontMap(nullptr), in CFX_ListCtrl()
668 m_pFontMap = pFontMap; in SetFontMap()
677 pListItem->SetFontMap(m_pFontMap); in AddItem()
Dfxet_list.h300 IPVT_FontMap* m_pFontMap; variable
Dfxet_edit.h542 IPVT_FontMap* m_pFontMap;