Lines Matching refs:pSelect
2309 void PDFWriterImpl::getFontMetric( ImplFontSelectData* pSelect, ImplFontMetricData* pMetric ) const in getFontMetric() argument
2311 const ImplPdfBuiltinFontData* pFD = GetPdfFontData( pSelect->mpFontData ); in getFontMetric()
2316 pMetric->mnOrientation = sal::static_int_cast<short>(pSelect->mnOrientation); in getFontMetric()
2322 pMetric->mnWidth = pSelect->mnHeight; in getFontMetric()
2323 pMetric->mnAscent = ( pSelect->mnHeight * +pBuiltinFont->m_nAscent + 500 ) / 1000; in getFontMetric()
2324 pMetric->mnDescent = ( pSelect->mnHeight * -pBuiltinFont->m_nDescent + 500 ) / 1000; in getFontMetric()
2446 SalLayout* PDFWriterImpl::GetTextLayout( ImplLayoutArgs& rArgs, ImplFontSelectData* pSelect ) in GetTextLayout() argument
2448 DBG_ASSERT( (pSelect->mpFontData != NULL), in GetTextLayout()
2451 const ImplPdfBuiltinFontData* pFD = GetPdfFontData( pSelect->mpFontData ); in GetTextLayout()
2456 long nPixelPerEM = pSelect->mnWidth ? pSelect->mnWidth : pSelect->mnHeight; in GetTextLayout()
2457 int nOrientation = pSelect->mnOrientation; in GetTextLayout()