Lines Matching refs:aSpacing

1705             style::LineSpacing aSpacing;  in lcl_attribute()  local
1710 aLineSpacingIter->second >>= aSpacing; in lcl_attribute()
1715 aSpacing.Mode = style::LineSpacingMode::FIX; in lcl_attribute()
1716aSpacing.Height = sal_Int16(ConversionHelper::convertTwipToMM100( SINGLE_LINE_SPACING )); in lcl_attribute()
1721 if( aSpacing.Mode == style::LineSpacingMode::PROP ) in lcl_attribute()
1722 aSpacing.Height = sal_Int16(sal_Int32(nIntValue) * 100 / SINGLE_LINE_SPACING ); in lcl_attribute()
1724 aSpacing.Height = sal_Int16(ConversionHelper::convertTwipToMM100( nIntValue )); in lcl_attribute()
1731 aSpacing.Mode = style::LineSpacingMode::PROP; in lcl_attribute()
1733aSpacing.Height = sal_Int16( aSpacing.Height * 100 / ConversionHelper::convertTwipToMM100( SINGLE… in lcl_attribute()
1736 aSpacing.Mode = style::LineSpacingMode::MINIMUM; in lcl_attribute()
1738 aSpacing.Mode = style::LineSpacingMode::FIX; in lcl_attribute()
1740 pTopContext->Insert(PROP_PARA_LINE_SPACING, true, uno::makeAny( aSpacing )); in lcl_attribute()
2390 style::LineSpacing aSpacing; in sprmWithProps() local
2395 aSpacing.Mode = style::LineSpacingMode::PROP; in sprmWithProps()
2396 aSpacing.Height = sal_Int16(sal_Int32(nDistance) * 100 /240); in sprmWithProps()
2402 aSpacing.Mode = style::LineSpacingMode::FIX; in sprmWithProps()
2403 aSpacing.Height = sal_Int16(ConversionHelper::convertTwipToMM100(-nDistance)); in sprmWithProps()
2407 aSpacing.Mode = style::LineSpacingMode::MINIMUM; in sprmWithProps()
2408 aSpacing.Height = sal_Int16(ConversionHelper::convertTwipToMM100(nDistance)); in sprmWithProps()
2411 rContext->Insert(PROP_PARA_LINE_SPACING, true, uno::makeAny( aSpacing )); in sprmWithProps()