Lines Matching refs:aSeq
124 … ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq( ZOOM_PARAMS ); in QueryValue()
125 aSeq[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOM_PARAM_VALUE )); in QueryValue()
126 aSeq[0].Value <<= sal_Int32( GetValue() ); in QueryValue()
127 aSeq[1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOM_PARAM_VALUESET )); in QueryValue()
128 aSeq[1].Value <<= sal_Int16( nValueSet ); in QueryValue()
129 aSeq[2].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ZOOM_PARAM_TYPE )); in QueryValue()
130 aSeq[2].Value <<= sal_Int16( eType ); in QueryValue()
131 rVal <<= aSeq; in QueryValue()
154 ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq; in PutValue()
155 if (( rVal >>= aSeq ) && ( aSeq.getLength() == ZOOM_PARAMS )) in PutValue()
162 for ( sal_Int32 i = 0; i < aSeq.getLength(); i++ ) in PutValue()
164 if ( aSeq[i].Name.equalsAscii( ZOOM_PARAM_VALUE )) in PutValue()
166 bAllConverted &= ( aSeq[i].Value >>= nValueTmp ); in PutValue()
169 else if ( aSeq[i].Name.equalsAscii( ZOOM_PARAM_VALUESET )) in PutValue()
171 bAllConverted &= ( aSeq[i].Value >>= nValueSetTmp ); in PutValue()
174 else if ( aSeq[i].Name.equalsAscii( ZOOM_PARAM_TYPE )) in PutValue()
176 bAllConverted &= ( aSeq[i].Value >>= nTypeTmp ); in PutValue()