Lines Matching refs:rVal

106 sal_Bool SvxHorJustifyItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const  in QueryValue()  argument
124 rVal <<= eUno; in QueryValue()
143 rVal <<= nAdjust; // as sal_Int16 in QueryValue()
150 sal_Bool SvxHorJustifyItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
159 if(!(rVal >>= eUno)) in PutValue()
162 if(!(rVal >>= nValue)) in PutValue()
184 if(!(rVal >>= nVal)) in PutValue()
272 sal_Bool SvxVerJustifyItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
287 rVal <<= eUno; in QueryValue()
301 rVal <<= eUno; in QueryValue()
308 sal_Bool SvxVerJustifyItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
317 if(!(rVal >>= nVal)) in PutValue()
334 if(!(rVal >>= eUno)) in PutValue()
337 if(!(rVal >>= nValue)) in PutValue()
429 sal_Bool SvxOrientationItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const in QueryValue() argument
439 rVal <<= eUno; in QueryValue()
443 sal_Bool SvxOrientationItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) in PutValue() argument
446 if(!(rVal >>= eOrient)) in PutValue()
449 if(!(rVal >>= nValue)) in PutValue()
676 sal_Bool SvxMarginItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
684 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nLeftMargin) : nLeftMargin ); in QueryValue()
687 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nRightMargin) : nRightMargin ); in QueryValue()
690 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nTopMargin) : nTopMargin ); in QueryValue()
693 rVal <<= (sal_Int32)( bConvert ? TWIP_TO_MM100(nBottomMargin) : nBottomMargin ); in QueryValue()
704 sal_Bool SvxMarginItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
709 if(!(rVal >>= nVal) || (nVal > nMaxVal)) in PutValue()