Home
last modified time | relevance | path

Searched refs:GetTypeAscent (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/core/include/fpdfdoc/
Dfpdf_ap.h58 FX_INT32 GetTypeAscent(FX_INT32 nFontIndex);
Dfpdf_vt.h286 virtual FX_INT32 GetTypeAscent(FX_INT32 nFontIndex) = 0;
/external/pdfium/core/src/fpdfdoc/
Ddoc_ap.cpp130 FX_INT32 CPVT_Provider::GetTypeAscent(FX_INT32 nFontIndex) in GetTypeAscent() function in CPVT_Provider
133 return pPDFFont->GetTypeAscent(); in GetTypeAscent()
Ddoc_vt.cpp1386 return (FX_FLOAT)GetTypeAscent(nFontIndex) * fFontSize * PVT_FONTSCALE; in GetFontAscent()
1650 FX_INT32 CPDF_VariableText::GetTypeAscent(FX_INT32 nFontIndex) in GetTypeAscent() function in CPDF_VariableText
1652 return m_pVTProvider ? m_pVTProvider->GetTypeAscent(nFontIndex) : 0; in GetTypeAscent()
Dpdf_vt.h542 FX_INT32 GetTypeAscent(FX_INT32 nFontIndex);
/external/pdfium/core/include/fpdfapi/
Dfpdf_resource.h215 int GetTypeAscent() const in GetTypeAscent() function
/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_edit.h807 FX_INT32 GetTypeAscent(FX_INT32 nFontIndex);
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp168 FX_INT32 CFX_Edit_Provider::GetTypeAscent(FX_INT32 nFontIndex) in GetTypeAscent() function in CFX_Edit_Provider
171 return pPDFFont->GetTypeAscent(); in GetTypeAscent()
/external/pdfium/core/src/fpdftext/
Dfpdf_text_int.cpp323 if (pCurObj->GetFont()->GetTypeAscent()) { in GetRectArray()
324 … rect.top = orgY + pCurObj->GetFont()->GetTypeAscent() * pCurObj->GetFontSize() / 1000; in GetRectArray()
/external/pdfium/core/src/reflow/
Dlayoutprocessor_reflow.cpp918 int ascent = pFont->GetTypeAscent(); in GetCharState()