Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.h57 virtual int32_t GetTypeAscent(int32_t nFontIndex);
167 int32_t GetTypeAscent(int32_t nFontIndex);
Dcpdf_variabletext.cpp54 int32_t CPDF_VariableText::Provider::GetTypeAscent(int32_t nFontIndex) { in GetTypeAscent() function in CPDF_VariableText::Provider
56 return pPDFFont ? pPDFFont->GetTypeAscent() : 0; in GetTypeAscent()
623 return (float)GetTypeAscent(nFontIndex) * fFontSize * kFontScale; in GetFontAscent()
875 int32_t CPDF_VariableText::GetTypeAscent(int32_t nFontIndex) { in GetTypeAscent() function in CPDF_VariableText
876 return m_pVTProvider ? m_pVTProvider->GetTypeAscent(nFontIndex) : 0; in GetTypeAscent()
/external/pdfium/core/fpdfapi/font/
Dcpdf_font.h108 int GetTypeAscent() const { return m_Ascent; } in GetTypeAscent() function
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.h451 int32_t GetTypeAscent(int32_t nFontIndex) override;
Dcpwl_edit_impl.cpp129 int32_t CPWL_EditImpl_Provider::GetTypeAscent(int32_t nFontIndex) { in GetTypeAscent() function in CPWL_EditImpl_Provider
131 return pPDFFont ? pPDFFont->GetTypeAscent() : 0; in GetTypeAscent()
/external/pdfium/fpdfsdk/
Dfpdf_text.cpp267 int ascent = charinfo.m_pTextObj->GetFont()->GetTypeAscent(); in FPDFText_GetLooseCharBox()