Lines Matching refs:aSeq
117 …::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq( VIEWLAYOUT_PARAMS … in QueryValue()
118 aSeq[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( VIEWLAYOUT_PARAM_COLUMNS )); in QueryValue()
119 aSeq[0].Value <<= sal_Int32( GetValue() ); in QueryValue()
120 aSeq[1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( VIEWLAYOUT_PARAM_BOOKMODE )); in QueryValue()
121 aSeq[1].Value <<= sal_Bool( mbBookMode ); in QueryValue()
122 rVal <<= aSeq; in QueryValue()
144 ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq; in PutValue()
145 if (( rVal >>= aSeq ) && ( aSeq.getLength() == VIEWLAYOUT_PARAMS )) in PutValue()
151 for ( sal_Int32 i = 0; i < aSeq.getLength(); i++ ) in PutValue()
153 if ( aSeq[i].Name.equalsAscii( VIEWLAYOUT_PARAM_COLUMNS )) in PutValue()
155 bAllConverted &= ( aSeq[i].Value >>= nColumns ); in PutValue()
158 else if ( aSeq[i].Name.equalsAscii( VIEWLAYOUT_PARAM_BOOKMODE )) in PutValue()
160 bAllConverted &= ( aSeq[i].Value >>= bBookMode ); in PutValue()