Lines Matching refs:aSeq

114 …::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq( ZOOMSLIDER_PARAMS …  in QueryValue()
115aSeq[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_CURRENTZOOM )); in QueryValue()
116 aSeq[0].Value <<= sal_Int32( GetValue() ); in QueryValue()
117aSeq[1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_SNAPPINGPOINTS )); in QueryValue()
118 aSeq[1].Value <<= maValues; in QueryValue()
119aSeq[2].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_MINZOOM ) ); in QueryValue()
120 aSeq[2].Value <<= mnMinZoom; in QueryValue()
121aSeq[3].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOMSLIDER_PARAM_MAXZOOM ) ); in QueryValue()
122 aSeq[3].Value <<= mnMaxZoom; in QueryValue()
123 rVal <<= aSeq; in QueryValue()
163 ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq; in PutValue()
164 if (( rVal >>= aSeq ) && ( aSeq.getLength() == ZOOMSLIDER_PARAMS )) in PutValue()
173 for ( sal_Int32 i = 0; i < aSeq.getLength(); i++ ) in PutValue()
175 if ( aSeq[i].Name.equalsAscii( ZOOMSLIDER_PARAM_CURRENTZOOM )) in PutValue()
177 bAllConverted &= ( aSeq[i].Value >>= nCurrentZoom ); in PutValue()
180 else if ( aSeq[i].Name.equalsAscii( ZOOMSLIDER_PARAM_SNAPPINGPOINTS )) in PutValue()
182 bAllConverted &= ( aSeq[i].Value >>= aValues ); in PutValue()
185 else if( aSeq[i].Name.equalsAscii( ZOOMSLIDER_PARAM_MINZOOM ) ) in PutValue()
187 bAllConverted &= ( aSeq[i].Value >>= nMinZoom ); in PutValue()
190 else if( aSeq[i].Name.equalsAscii( ZOOMSLIDER_PARAM_MAXZOOM ) ) in PutValue()
192 bAllConverted &= ( aSeq[i].Value >>= nMaxZoom ); in PutValue()