Lines Matching refs:aPropSeq
355 uno::Sequence< beans::PropertyValue > aPropSeq( 3 ); in QueryValue() local
357 aPropSeq[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" )); in QueryValue()
358 aPropSeq[0].Value = uno::makeAny( aInternalName ); in QueryValue()
359 aPropSeq[1].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FillBitmapURL" )); in QueryValue()
360 aPropSeq[1].Value = uno::makeAny( aURL ); in QueryValue()
361 aPropSeq[2].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Bitmap" )); in QueryValue()
362 aPropSeq[2].Value = uno::makeAny( xBmp ); in QueryValue()
364 rVal <<= aPropSeq; in QueryValue()
398 uno::Sequence< beans::PropertyValue > aPropSeq; in PutValue() local
399 if( rVal >>= aPropSeq ) in PutValue()
401 for ( sal_Int32 n = 0; n < aPropSeq.getLength(); n++ ) in PutValue()
403 if( aPropSeq[n].Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Name" ))) in PutValue()
404 bSetName = (aPropSeq[n].Value >>= aName); in PutValue()
405 … else if( aPropSeq[n].Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "FillBitmapURL" ))) in PutValue()
406 bSetURL = (aPropSeq[n].Value >>= aURL); in PutValue()
407 else if( aPropSeq[n].Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Bitmap" ))) in PutValue()
408 bSetBitmap = (aPropSeq[n].Value >>= xBmp); in PutValue()