Home
last modified time | relevance | path

Searched refs:aNewArgs (Results 1 – 7 of 7) sorted by relevance

/trunk/main/embeddedobj/source/general/
H A Dintercept.cxx163 uno::Sequence< beans::PropertyValue > aNewArgs = Arguments; in dispatch() local
166 while( nInd < aNewArgs.getLength() ) in dispatch()
168 if ( aNewArgs[nInd].Name.equalsAscii( "SaveTo" ) ) in dispatch()
170 aNewArgs[nInd].Value <<= sal_True; in dispatch()
176 if ( nInd == aNewArgs.getLength() ) in dispatch()
178 aNewArgs.realloc( nInd + 1 ); in dispatch()
179 aNewArgs[nInd].Name = ::rtl::OUString::createFromAscii( "SaveTo" ); in dispatch()
180 aNewArgs[nInd].Value <<= sal_True; in dispatch()
186 xDispatch->dispatch( URL, aNewArgs ); in dispatch()
/trunk/main/dbaccess/source/core/dataaccess/
H A Dintercept.cxx152 Sequence< PropertyValue > aNewArgs = Arguments; in dispatch() local
155 while( nInd < aNewArgs.getLength() ) in dispatch()
157 if ( aNewArgs[nInd].Name.equalsAscii( "SaveTo" ) ) in dispatch()
159 aNewArgs[nInd].Value <<= sal_True; in dispatch()
165 if ( nInd == aNewArgs.getLength() ) in dispatch()
167 aNewArgs.realloc( nInd + 1 ); in dispatch()
168 aNewArgs[nInd].Name = ::rtl::OUString::createFromAscii( "SaveTo" ); in dispatch()
169 aNewArgs[nInd].Value <<= sal_True; in dispatch()
175 xDispatch->dispatch( _URL, aNewArgs ); in dispatch()
/trunk/main/framework/source/uifactory/
H A Duicontrollerfactory.cxx121 Sequence< Any > aNewArgs( Arguments ); in createInstanceWithArgumentsAndContext() local
123 sal_Int32 nAppendIndex = aNewArgs.getLength(); in createInstanceWithArgumentsAndContext()
125 aNewArgs.realloc( aNewArgs.getLength() + (bHasValue ? 2 : 1) ); in createInstanceWithArgumentsAndContext()
131 aNewArgs[nAppendIndex] <<= aPropValue; in createInstanceWithArgumentsAndContext()
140 aNewArgs[nAppendIndex+1] <<= aPropValue; in createInstanceWithArgumentsAndContext()
160 return xServiceManager->createInstanceWithArguments( aServiceName, aNewArgs ); in createInstanceWithArgumentsAndContext()
/trunk/main/embedserv/source/embed/
H A Dintercept.cxx202 uno::Sequence< beans::PropertyValue > aNewArgs = Arguments; in dispatch() local
205 while( nInd < aNewArgs.getLength() ) in dispatch()
207 if ( aNewArgs[nInd].Name.equalsAscii( "SaveTo" ) ) in dispatch()
209 aNewArgs[nInd].Value <<= sal_True; in dispatch()
215 if ( nInd == aNewArgs.getLength() ) in dispatch()
217 aNewArgs.realloc( nInd + 1 ); in dispatch()
218 aNewArgs[nInd].Name = ::rtl::OUString::createFromAscii( "SaveTo" ); in dispatch()
219 aNewArgs[nInd].Value <<= sal_True; in dispatch()
225 xDispatch->dispatch( URL, aNewArgs ); in dispatch()
/trunk/main/ucb/source/ucp/hierarchy/
H A Dhierarchydatasource.cxx369 uno::Sequence< uno::Any > aNewArgs( Arguments ); in createInstanceWithArguments() local
405 aNewArgs[ n ] <<= aProp; in createInstanceWithArguments()
463 aNewArgs ); in createInstanceWithArguments()
470 sal_Int32 nLen = aNewArgs.getLength(); in createInstanceWithArguments()
471 aNewArgs.realloc( nLen + 1 ); in createInstanceWithArguments()
477 aNewArgs[ nLen ] <<= aProp; in createInstanceWithArguments()
484 aNewArgs ); in createInstanceWithArguments()
/trunk/main/vcl/source/glyphs/
H A Dgraphite_textsrc.hxx113 inline void TextSourceAdaptor::switchLayoutArgs(ImplLayoutArgs & aNewArgs) in switchLayoutArgs() argument
115 mnEnd += aNewArgs.mnMinCharPos - maLayoutArgs.mnMinCharPos; in switchLayoutArgs()
116 maLayoutArgs = aNewArgs; in switchLayoutArgs()
/trunk/main/sfx2/source/view/
H A Dfrmload.cxx128 ::comphelper::NamedValueCollection aNewArgs; in impl_detectFilterForURL()
129 aNewArgs.put( "URL", sURL ); in impl_detectFilterForURL()
132 aNewArgs.put( "InteractionHandler", i_rDescriptor.get( "InteractionHandler" ) ); in impl_detectFilterForURL()
134 aNewArgs.put( "StatusIndicator", i_rDescriptor.get( "StatusIndicator" ) ); in impl_detectFilterForURL()
136 Sequence< PropertyValue > aQueryArgs( aNewArgs.getPropertyValues() ); in impl_detectFilterForURL()