Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcpdf_variabletext.h58 virtual int32_t GetTypeDescent(int32_t nFontIndex);
168 int32_t GetTypeDescent(int32_t nFontIndex);
Dcpdf_variabletext.cpp59 int32_t CPDF_VariableText::Provider::GetTypeDescent(int32_t nFontIndex) { in GetTypeDescent() function in CPDF_VariableText::Provider
61 return pPDFFont ? pPDFFont->GetTypeDescent() : 0; in GetTypeDescent()
627 return (float)GetTypeDescent(nFontIndex) * fFontSize * kFontScale; in GetFontDescent()
879 int32_t CPDF_VariableText::GetTypeDescent(int32_t nFontIndex) { in GetTypeDescent() function in CPDF_VariableText
880 return m_pVTProvider ? m_pVTProvider->GetTypeDescent(nFontIndex) : 0; in GetTypeDescent()
/external/pdfium/core/fpdfapi/font/
Dcpdf_font.h109 int GetTypeDescent() const { return m_Descent; } in GetTypeDescent() function
/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.h452 int32_t GetTypeDescent(int32_t nFontIndex) override;
Dcpwl_edit_impl.cpp134 int32_t CPWL_EditImpl_Provider::GetTypeDescent(int32_t nFontIndex) { in GetTypeDescent() function in CPWL_EditImpl_Provider
136 return pPDFFont ? pPDFFont->GetTypeDescent() : 0; in GetTypeDescent()
/external/pdfium/fpdfsdk/
Dfpdf_text.cpp268 int descent = charinfo.m_pTextObj->GetFont()->GetTypeDescent(); in FPDFText_GetLooseCharBox()