Lines Matching refs:nVal

183 				sal_Int16 nVal = sal_Int16();  in PutValue()  local
184 if(!(rVal >>= nVal)) in PutValue()
188 switch (nVal) in PutValue()
205 XubString SvxHorJustifyItem::GetValueText( sal_uInt16 nVal ) const in GetValueText()
207 DBG_ASSERT( nVal <= SVX_HOR_JUSTIFY_REPEAT, "enum overflow!" ); in GetValueText()
208 return SVX_RESSTR(RID_SVXITEMS_HORJUST_STANDARD + nVal); in GetValueText()
222 sal_uInt16 nVal; in Create() local
223 rStream >> nVal; in Create()
224 return new SvxHorJustifyItem( (SvxCellHorJustify)nVal, Which() ); in Create()
316 style::VerticalAlignment nVal = style::VerticalAlignment_TOP; in PutValue() local
317 if(!(rVal >>= nVal)) in PutValue()
321 switch (nVal) in PutValue()
361 XubString SvxVerJustifyItem::GetValueText( sal_uInt16 nVal ) const in GetValueText()
363 DBG_ASSERT( nVal <= SVX_VER_JUSTIFY_BOTTOM, "enum overflow!" ); in GetValueText()
364 return SVX_RESSTR(RID_SVXITEMS_VERJUST_STANDARD + nVal); in GetValueText()
378 sal_uInt16 nVal; in Create() local
379 rStream >> nVal; in Create()
380 return new SvxVerJustifyItem( (SvxCellVerJustify)nVal, Which() ); in Create()
468 XubString SvxOrientationItem::GetValueText( sal_uInt16 nVal ) const in GetValueText()
470 DBG_ASSERT( nVal <= SVX_ORIENTATION_STACKED, "enum overflow!" ); in GetValueText()
471 return SVX_RESSTR(RID_SVXITEMS_ORI_STANDARD + nVal); in GetValueText()
485 sal_uInt16 nVal; in Create() local
486 rStream >> nVal; in Create()
487 return new SvxOrientationItem( (SvxCellOrientation)nVal, Which() ); in Create()
708 sal_Int32 nVal = 0; in PutValue() local
709 if(!(rVal >>= nVal) || (nVal > nMaxVal)) in PutValue()
715 nLeftMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal ); in PutValue()
718 nRightMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal ); in PutValue()
721 nTopMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal ); in PutValue()
724 nBottomMargin = (sal_Int16)( bConvert ? MM100_TO_TWIP(nVal) : nVal ); in PutValue()