Home
last modified time | relevance | path

Searched refs:pPDFFont (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fpdfsdk/fxedit/
Dfxet_ap.cpp18 CPDF_Font* pPDFFont = pFontMap->GetPDFFont(nFontIndex); in GetPDFWordString() local
19 if (!pPDFFont) in GetPDFWordString()
26 uint32_t dwCharCode = pPDFFont->IsUnicodeCompatible() in GetPDFWordString()
27 ? pPDFFont->CharCodeFromUnicode(Word) in GetPDFWordString()
31 pPDFFont->AppendChar(sWord, dwCharCode); in GetPDFWordString()
36 pPDFFont->AppendChar(sWord, Word); in GetPDFWordString()
Dfxet_edit.cpp162 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) { in GetCharWidth() local
165 if (pPDFFont->IsUnicodeCompatible()) in GetCharWidth()
166 charcode = pPDFFont->CharCodeFromUnicode(word); in GetCharWidth()
171 return pPDFFont->GetCharWidthF(charcode); in GetCharWidth()
178 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeAscent() local
179 return pPDFFont->GetTypeAscent(); in GetTypeAscent()
185 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeDescent() local
186 return pPDFFont->GetTypeDescent(); in GetTypeDescent()
/external/pdfium/core/fpdfdoc/
Dcpvt_fontmap.cpp37 CPDF_Font* pPDFFont = AddNativeInterFormFont(pFormDict, pDoc, sSysFontAlias); in GetAnnotSysPDFFont() local
38 if (!pPDFFont) in GetAnnotSysPDFFont()
44 pPDFFont->GetFontDict()->GetObjNum()); in GetAnnotSysPDFFont()
46 pSysFont = pPDFFont; in GetAnnotSysPDFFont()
Dcpdf_variabletext.cpp41 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) { in GetCharWidth() local
42 uint32_t charcode = pPDFFont->CharCodeFromUnicode(word); in GetCharWidth()
44 return pPDFFont->GetCharWidthF(charcode); in GetCharWidth()
50 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeAscent() local
51 return pPDFFont->GetTypeAscent(); in GetTypeAscent()
56 if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(nFontIndex)) in GetTypeDescent() local
57 return pPDFFont->GetTypeDescent(); in GetTypeDescent()
Dcpvt_generateap.cpp1334 if (CPDF_Font* pPDFFont = pFontMap->GetPDFFont(nFontIndex)) { in GetPDFWordString() local
1335 if (pPDFFont->GetBaseFont().Compare("Symbol") == 0 || in GetPDFWordString()
1336 pPDFFont->GetBaseFont().Compare("ZapfDingbats") == 0) { in GetPDFWordString()
1339 uint32_t dwCharCode = pPDFFont->CharCodeFromUnicode(Word); in GetPDFWordString()
1341 pPDFFont->AppendChar(sWord, dwCharCode); in GetPDFWordString()
/external/pdfium/xfa/fxfa/
Dxfa_fontmgr.h56 CPDF_Font** pPDFFont,
62 void SetFont(const CFX_RetainPtr<CFGAS_GEFont>& pFont, CPDF_Font* pPDFFont);
68 CPDF_Font** pPDFFont,
/external/pdfium/xfa/fxfa/app/
Dxfa_fontmgr.cpp1844 CPDF_Font* pPDFFont = pDoc->LoadFont(pFontDict); in FindFont() local
1845 if (!pPDFFont) { in FindFont()
1848 if (!pPDFFont->IsEmbedded()) { in FindFont()
1849 *pDstPDFFont = pPDFFont; in FindFont()
1852 return CFGAS_GEFont::LoadFont(&pPDFFont->m_Font, pFDEFontMgr); in FindFont()
1860 CPDF_Font** pPDFFont, in GetFont() argument
1874 FindFont(strFontName, bBold, bItalic, pPDFFont, bStrictMatch); in GetFont()
1982 CPDF_Font* pPDFFont = it->second; in GetCharWidth() local
1983 *pWidth = pPDFFont->GetCharWidthF(pPDFFont->CharCodeFromUnicode(wUnicode)); in GetCharWidth()
1988 CPDF_Font* pPDFFont) { in SetFont() argument
[all …]