Lines Matching refs:rVal

147 sal_Bool SvxLineSpacingItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const  in QueryValue()  argument
183 case 0 : rVal <<= aLSp; break; in QueryValue()
184 case MID_LINESPACE : rVal <<= aLSp.Mode; break; in QueryValue()
185 case MID_HEIGHT : rVal <<= aLSp.Height; break; in QueryValue()
194 sal_Bool SvxLineSpacingItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
207 case 0 : bRet = (rVal >>= aLSp); break; in PutValue()
208 case MID_LINESPACE : bRet = (rVal >>= aLSp.Mode); break; in PutValue()
209 case MID_HEIGHT : bRet = (rVal >>= aLSp.Height); break; in PutValue()
389 sal_Bool SvxAdjustItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
395 case MID_PARA_ADJUST : rVal <<= (sal_Int16)GetAdjust(); break; in QueryValue()
396 case MID_LAST_LINE_ADJUST : rVal <<= (sal_Int16)GetLastBlock(); break; in QueryValue()
400 rVal.setValue( &bValue, ::getCppuBooleanType() ); in QueryValue()
411 sal_Bool SvxAdjustItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
423 eVal = ::comphelper::getEnumAsINT32(rVal); in PutValue()
441 bOneBlock = Any2Bool(rVal); in PutValue()
708 sal_Bool SvxHyphenZoneItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
715 rVal = Bool2Any(bHyphen); in QueryValue()
718 rVal <<= (sal_Int16)nMinLead; in QueryValue()
721 rVal <<= (sal_Int16)nMinTrail; in QueryValue()
724 rVal <<= (sal_Int16)nMaxHyphens; in QueryValue()
730 sal_Bool SvxHyphenZoneItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
737 if(!(rVal >>= nNewVal)) in PutValue()
743 bHyphen = Any2Bool(rVal); in PutValue()
1014 sal_Bool SvxTabStopItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
1042 rVal <<= aSeq; in QueryValue()
1048rVal <<= static_cast<sal_Int32>(bConvert ? TWIP_TO_MM100(rTab.GetTabPos()) : rTab.GetTabPos()); in QueryValue()
1058 sal_Bool SvxTabStopItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
1067 if(!(rVal >>= aSeq)) in PutValue()
1070 if (!(rVal >>= aAnySeq)) in PutValue()
1137 if (!(rVal >>= nNewPos) ) in PutValue()
1382 sal_Bool SvxPageModelItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) const in QueryValue() argument
1389 case MID_AUTO: rVal <<= (sal_Bool) bAuto; break; in QueryValue()
1390 case MID_NAME: rVal <<= ::rtl::OUString( GetValue() ); break; in QueryValue()
1397 sal_Bool SvxPageModelItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) in PutValue() argument
1405 case MID_AUTO: bRet = ( rVal >>= bAuto ); break; in PutValue()
1406 case MID_NAME: bRet = ( rVal >>= aStr ); if ( bRet ) SetValue(aStr); break; in PutValue()
1677 sal_Bool SvxParaVertAlignItem::QueryValue( com::sun::star::uno::Any& rVal, in QueryValue() argument
1680 rVal <<= (sal_Int16)GetValue(); in QueryValue()
1684 sal_Bool SvxParaVertAlignItem::PutValue( const com::sun::star::uno::Any& rVal, in PutValue() argument
1688 if((rVal >>= nVal) && nVal >=0 && nVal <= BOTTOM ) in PutValue()