Lines Matching refs:aProperties

498         ::std::vector<PropertyValue> aProperties;  in displayCurrentSlide()
506 aProperties.push_back( in displayCurrentSlide()
519 aProperties.push_back( in displayCurrentSlide()
525 aProperties.push_back( in displayCurrentSlide()
534 Sequence< PropertyValue > aPropertySequence (aProperties.size()); in displayCurrentSlide()
535 for (int nIndex=0,nCount=aProperties.size();nIndex<nCount; ++nIndex) in displayCurrentSlide()
536 aPropertySequence[nIndex] = aProperties[nIndex]; in displayCurrentSlide()
901 Sequence< beans::PropertyValue > aProperties(nPropertyCount); in startPreview() local
902 aProperties[0].Name = OUString( RTL_CONSTASCII_USTRINGPARAM("AutomaticAdvancement") ); in startPreview()
903 aProperties[0].Value = uno::makeAny( (double)1.0 ); // one second timeout in startPreview()
907 aProperties[1].Name = OUString( RTL_CONSTASCII_USTRINGPARAM("NoSlideTransitions") ); in startPreview()
908 aProperties[1].Value = uno::makeAny( sal_True ); in startPreview()
911 bRet = startShowImpl( aProperties ); in startPreview()
1123 std::vector<beans::PropertyValue> aProperties; in startShow() local
1124 aProperties.reserve( 4 ); in startShow()
1126 aProperties.push_back( in startShow()
1132 aProperties.push_back( in startShow()
1140 aProperties.push_back( in startShow()
1153 aProperties.push_back( in startShow()
1161 aProperties.push_back( in startShow()
1168 aProperties.push_back( in startShow()
1177 aProperties.push_back( in startShow()
1184 &aProperties[0], aProperties.size() ) ); in startShow()
1205 bool SlideshowImpl::startShowImpl( const Sequence< beans::PropertyValue >& aProperties ) in startShowImpl() argument
1237 const sal_Int32 nCount = aProperties.getLength(); in startShowImpl()
1240 mxShow->setProperty( aProperties[nIndex] ); in startShowImpl()