Home
last modified time | relevance | path

Searched refs:pCIDFont (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page.cpp319 CPDF_CIDFont* pCIDFont = pFont->GetCIDFont(); in GetCharWidth() local
320 if (pCIDFont) { in GetCharWidth()
321 bVertWriting = pCIDFont->IsVertWriting(); in GetCharWidth()
326 FX_WORD CID = pCIDFont->CIDFromCharCode(charcode); in GetCharWidth()
327 return pCIDFont->GetVertWidth(CID) * fontsize; in GetCharWidth()
338 CPDF_CIDFont* pCIDFont = pFont->GetCIDFont(); in GetSpaceCharWidth() local
339 if (pCIDFont) { in GetSpaceCharWidth()
340 bVertWriting = pCIDFont->IsVertWriting(); in GetSpaceCharWidth()
352 CPDF_CIDFont* pCIDFont = pFont->GetCIDFont(); in GetCharRect() local
353 if (pCIDFont) { in GetCharRect()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_text.cpp535 CPDF_CIDFont* pCIDFont = pFont->GetCIDFont(); in Load() local
536 FX_BOOL bVertWriting = pCIDFont && pCIDFont->IsVertWriting(); in Load()
545 if (pCIDFont) { in Load()
546 charpos.m_bFontStyle = pCIDFont->IsFontStyleFromCharCode(CharCode); in Load()
560 if (!pCIDFont) { in Load()
563 FX_WORD CID = pCIDFont->CIDFromCharCode(CharCode); in Load()
568 pCIDFont->GetVertOrigin(CID, vx, vy); in Load()
572 const uint8_t* pTransform = pCIDFont->GetCIDTransform(CID); in Load()
574 charpos.m_AdjustMatrix[0] = pCIDFont->CIDTransformToFloat(pTransform[0]); in Load()
575 charpos.m_AdjustMatrix[2] = pCIDFont->CIDTransformToFloat(pTransform[2]); in Load()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp107 CPDF_CIDFont* pCIDFont = GetCIDFont(); in IsVertWriting() local
108 if (pCIDFont) { in IsVertWriting()
109 bVertWriting = pCIDFont->IsVertWriting(); in IsVertWriting()