Lines Matching refs:nMaxWidth
205 sal_uInt16 lclScaleValue( long nValue, double fScale, sal_uInt16 nMaxWidth ) in lclScaleValue() argument
210 static_cast< long >( nValue * fScale ), 1L ), nMaxWidth ) ) : 0; in lclScaleValue()
1200 #define SCALEVALUE( value ) lclScaleValue( value, fScale, nMaxWidth )
1227 void Style::Set( const SvxBorderLine& rBorder, double fScale, sal_uInt16 nMaxWidth, bool bUseDots ) in Set() argument
1249 while( GetWidth() > nMaxWidth ) in Set()
1255 if( GetWidth() > nMaxWidth ) in Set()
1268 if( (GetWidth() > nMaxWidth) && mnSecn ) in Set()
1276 void Style::Set( const SvxBorderLine* pBorder, double fScale, sal_uInt16 nMaxWidth, bool bUseDots ) in Set() argument
1279 Set( *pBorder, fScale, nMaxWidth, bUseDots ); in Set()
1287 Style& Style::ScaleSelf( double fScale, sal_uInt16 nMaxWidth ) in ScaleSelf() argument
1293 Style Style::Scale( double fScale, sal_uInt16 nMaxWidth ) const in Scale()
1295 return Style( *this ).ScaleSelf( fScale, nMaxWidth ); in Scale()