Home
last modified time | relevance | path

Searched refs:m_pSubstFont (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/src/fxge/ge/
Dfx_ge_font.cpp14 m_pSubstFont = NULL; in CFX_Font()
31 if (m_pSubstFont) { in ~CFX_Font()
32 delete m_pSubstFont; in ~CFX_Font()
33 m_pSubstFont = NULL; in ~CFX_Font()
76 m_pSubstFont = FX_NEW CFX_SubstFont; in LoadSubst()
77 if (!m_pSubstFont) { in LoadSubst()
81 CharsetCP, m_pSubstFont); in LoadSubst()
83 if(m_pSubstFont->m_ExtHandle) { in LoadSubst()
84 m_pPlatformFont = m_pSubstFont->m_ExtHandle; in LoadSubst()
85 m_pSubstFont->m_ExtHandle = NULL; in LoadSubst()
[all …]
Dfx_ge_text.cpp1699 if (m_pSubstFont) { in LoadGlyphPath()
1700 if (m_pSubstFont->m_ItalicAngle) { in LoadGlyphPath()
1701 int skew = m_pSubstFont->m_ItalicAngle; in LoadGlyphPath()
1709 if (m_pSubstFont->m_SubstFlags & FXFONT_SUBST_MM) { in LoadGlyphPath()
1710 AdjustMMParams(glyph_index, dest_width, m_pSubstFont->m_Weight); in LoadGlyphPath()
1721 …if (m_pSubstFont && !(m_pSubstFont->m_SubstFlags & FXFONT_SUBST_MM) && m_pSubstFont->m_Weight > 40… in LoadGlyphPath()
1723 if (m_pSubstFont->m_Charset == FXFONT_SHIFTJIS_CHARSET) { in LoadGlyphPath()
1724 level = g_WeightPow_SHIFTJIS[(m_pSubstFont->m_Weight - 400) / 10] * 2 * 65536 / 36655; in LoadGlyphPath()
1726 level = g_WeightPow[(m_pSubstFont->m_Weight - 400) / 10] * 2; in LoadGlyphPath()
/external/pdfium/core/include/fxge/
Dfx_font.h74 return m_pSubstFont; in GetSubstFont()
120 CFX_SubstFont* m_pSubstFont; variable
/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_doc.cpp1022 …pFontDesc->SetAtInteger("ItalicAngle", pFont->m_pSubstFont ? pFont->m_pSubstFont->m_ItalicAngle : … in AddFont()
1034 if (pFont->m_pSubstFont) { in AddFont()
1035 nStemV = pFont->m_pSubstFont->m_Weight / 5; in AddFont()
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp1030 if (m_Font.m_pSubstFont->m_SubstFlags & FXFONT_SUBST_NONSYMBOL) { in LoadSubstFont()