Home
last modified time | relevance | path

Searched refs:aCommand (Results 1 – 25 of 172) sorted by relevance

1234567

/AOO42X/main/idl/source/prj/
H A Dsvidl.cxx129 SvCommand aCommand( argc, argv ); local
131 if( aCommand.nVerbosity != 0 )
135 SvIdlWorkingBase * pDataBase = new SvIdlWorkingBase(aCommand);
138 if( aCommand.aExportFile.Len() )
140 DirEntry aDE( aCommand.aExportFile );
144 if( ReadIdl( pDataBase, aCommand ) )
146 if( nExit == 0 && aCommand.aDocuFile.Len() )
148 DirEntry aDE( aCommand.aDocuFile );
156 aStr += ByteString( aCommand.aDocuFile, RTL_TEXTENCODING_UTF8 );
160 if( nExit == 0 && aCommand.aListFile.Len() )
[all …]
/AOO42X/main/chart2/source/controller/main/
H A DChartController.cxx1005 bool lcl_isFormatObjectCommand( const rtl::OString& aCommand ) in lcl_isFormatObjectCommand() argument
1007 if( aCommand.equals("MainTitle") in lcl_isFormatObjectCommand()
1008 || aCommand.equals("SubTitle") in lcl_isFormatObjectCommand()
1009 || aCommand.equals("XTitle") in lcl_isFormatObjectCommand()
1010 || aCommand.equals("YTitle") in lcl_isFormatObjectCommand()
1011 || aCommand.equals("ZTitle") in lcl_isFormatObjectCommand()
1012 || aCommand.equals("SecondaryXTitle") in lcl_isFormatObjectCommand()
1013 || aCommand.equals("SecondaryYTitle") in lcl_isFormatObjectCommand()
1014 || aCommand.equals("AllTitles") in lcl_isFormatObjectCommand()
1015 || aCommand.equals("DiagramAxisX") in lcl_isFormatObjectCommand()
[all …]
/AOO42X/main/ucbhelper/source/client/
H A Dcontent.cxx532 Command aCommand; in getCommands() local
533 aCommand.Name = rtl::OUString::createFromAscii( "getCommandInfo" ); in getCommands()
534 aCommand.Handle = -1; // n/a in getCommands()
535 aCommand.Argument = Any(); in getCommands()
537 Any aResult = m_xImpl->executeCommand( aCommand ); in getCommands()
548 Command aCommand; in getProperties() local
549 aCommand.Name = rtl::OUString::createFromAscii( "getPropertySetInfo" ); in getProperties()
550 aCommand.Handle = -1; // n/a in getProperties()
551 aCommand.Argument = Any(); in getProperties()
553 Any aResult = m_xImpl->executeCommand( aCommand ); in getProperties()
[all …]
/AOO42X/main/padmin/source/
H A Dcmddlg.cxx69 String aCommand; in getSystemPdfCommands() local
80 aCommand = String( ByteString( pBuffer ), aEncoding ); in getSystemPdfCommands()
81 if( ( ( aCommand.GetChar( 0 ) == '/' ) in getSystemPdfCommands()
82 || ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '/' ) in getSystemPdfCommands()
83 …|| ( aCommand.GetChar( 0 ) == '.' && aCommand.GetChar( 1 ) == '.' && aCommand.GetChar( 2 ) == '/' … in getSystemPdfCommands()
85 && aCommand.GetChar( nLen-2 ) == 'g' in getSystemPdfCommands()
86 && aCommand.GetChar( nLen-1 ) == 's' ) in getSystemPdfCommands()
88aCommand.AppendAscii( " -q -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=\"(OUTFILE)\" -" ); in getSystemPdfCommands()
89 aSysCommands.push_back( aCommand ); in getSystemPdfCommands()
103 aCommand = String( ByteString( pBuffer ), aEncoding ); in getSystemPdfCommands()
[all …]
/AOO42X/main/basegfx/source/polygon/
H A Db2dsvgpolypolygon.cxx800 …const sal_Unicode aCommand(::basegfx::internal::lcl_getCommand('T', 't', bUseRelativeCoordinates)); in exportToSvgD() local
802 if(aLastSVGCommand != aCommand) in exportToSvgD()
804 aResult.append(aCommand); in exportToSvgD()
805 aLastSVGCommand = aCommand; in exportToSvgD()
810 aLastSVGCommand = aCommand; in exportToSvgD()
815 …const sal_Unicode aCommand(::basegfx::internal::lcl_getCommand('Q', 'q', bUseRelativeCoordinates)); in exportToSvgD() local
817 if(aLastSVGCommand != aCommand) in exportToSvgD()
819 aResult.append(aCommand); in exportToSvgD()
820 aLastSVGCommand = aCommand; in exportToSvgD()
827 aLastSVGCommand = aCommand; in exportToSvgD()
[all …]
/AOO42X/main/connectivity/source/drivers/hsqldb/
H A DHView.cxx121 ::rtl::OUStringBuffer aCommand; in IMPLEMENT_FORWARD_XINTERFACE2()
122 aCommand.appendAscii( "DROP VIEW " ); in IMPLEMENT_FORWARD_XINTERFACE2()
123 aCommand.append ( sQualifiedName ); in IMPLEMENT_FORWARD_XINTERFACE2()
124 xStatement->execute( aCommand.makeStringAndClear() ); in IMPLEMENT_FORWARD_XINTERFACE2()
128 aCommand.appendAscii( "CREATE VIEW " ); in IMPLEMENT_FORWARD_XINTERFACE2()
129 aCommand.append ( sQualifiedName ); in IMPLEMENT_FORWARD_XINTERFACE2()
130 aCommand.appendAscii( " AS " ); in IMPLEMENT_FORWARD_XINTERFACE2()
131 aCommand.append ( _rNewCommand ); in IMPLEMENT_FORWARD_XINTERFACE2()
132 xStatement->execute( aCommand.makeStringAndClear() ); in IMPLEMENT_FORWARD_XINTERFACE2()
177 ::rtl::OUStringBuffer aCommand; in impl_getCommand_throw()
[all …]
/AOO42X/main/dbaccess/source/core/dataaccess/
H A Ddocumentcontainer.cxx283 Command aCommand; in createInstanceWithArguments() local
284 aCommand.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("copyTo")); in createInstanceWithArguments()
285 aCommand.Argument <<= aIni; in createInstanceWithArguments()
287 xCopyFrom->execute(aCommand,-1,Reference< XCommandEnvironment >()); in createInstanceWithArguments()
343 Command aCommand; in createInstanceWithArguments() local
344 aCommand.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("insert")); in createInstanceWithArguments()
345 aCommand.Argument <<= aIni; in createInstanceWithArguments()
349 xCommandProcessor->execute(aCommand,-1,Reference< XCommandEnvironment >()); in createInstanceWithArguments()
451 Any SAL_CALL ODocumentContainer::execute( const Command& aCommand, sal_Int32 CommandId, const Refer… in execute() argument
454 if ( aCommand.Name.compareToAscii( "open" ) == 0 ) in execute()
[all …]
H A Ddocumentdefinition.cxx1160 Any SAL_CALL ODocumentDefinition::execute( const Command& aCommand, sal_Int32 CommandId, const Refe… in execute() argument
1164 sal_Bool bOpen = aCommand.Name.equalsAscii( "open" ); in execute()
1165 sal_Bool bOpenInDesign = aCommand.Name.equalsAscii( "openDesign" ); in execute()
1166 sal_Bool bOpenForMail = aCommand.Name.equalsAscii( "openForMail" ); in execute()
1211 return onCommandOpenSomething( aCommand.Argument, bActivateObject, Environment ); in execute()
1218 if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "copyTo" ) ) ) in execute()
1221 aCommand.Argument >>= aIni; in execute()
1240 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "preview" ) ) ) in execute()
1244 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "insert" ) ) ) in execute()
1247 aCommand.Argument >>= aIni; in execute()
[all …]
/AOO42X/main/framework/source/uifactory/
H A Dfactoryconfiguration.cxx175 rtl::OUString aCommand; in elementInserted() local
183 if ( impl_getElementProps( aEvent.Element, aCommand, aModule, aService, aValue )) in elementInserted()
187 rtl::OUString aHashKey( getHashKeyFromStrings( aCommand, aModule )); in elementInserted()
197 rtl::OUString aCommand; in elementRemoved() local
205 if ( impl_getElementProps( aEvent.Element, aCommand, aModule, aService, aValue )) in elementRemoved()
209 rtl::OUString aHashKey( getHashKeyFromStrings( aCommand, aModule )); in elementRemoved()
279 rtl::OUString aCommand; in updateConfigurationData() local
290 …etElementProps( m_xConfigAccess->getByName( aPopupMenuControllers[i] ), aCommand, aModule, aServic… in updateConfigurationData()
294 aHashKey = getHashKeyFromStrings( aCommand, aModule ); in updateConfigurationData()
308 …ollerFactory::impl_getElementProps( const Any& aElement, rtl::OUString& aCommand, rtl::OUString& a… in impl_getElementProps() argument
[all …]
/AOO42X/main/ucb/source/ucp/ftp/
H A Dftpcontent.cxx279 const Command& aCommand, in execute() argument
429 if(aCommand.Name.compareToAscii("getPropertyValues") == 0) { in execute()
431 if(!(aCommand.Argument >>= Properties)) in execute()
443 else if(aCommand.Name.compareToAscii("setPropertyValues") == 0) in execute()
447 if( ! ( aCommand.Argument >>= propertyValues ) ) { in execute()
458 else if(aCommand.Name.compareToAscii("getCommandInfo") == 0) { in execute()
462 else if(aCommand.Name.compareToAscii("getPropertySetInfo") == 0) { in execute()
466 else if(aCommand.Name.compareToAscii( "insert" ) == 0) in execute()
469 if ( ! ( aCommand.Argument >>= aInsertArgument ) ) { in execute()
479 else if(aCommand.Name.compareToAscii("delete") == 0) { in execute()
[all …]
/AOO42X/main/ucb/source/ucp/file/
H A Dbc.cxx331 BaseContent::execute( const Command& aCommand, in execute() argument
347 if( ! aCommand.Name.compareToAscii( "getPropertySetInfo" ) ) // No exceptions in execute()
351 else if( ! aCommand.Name.compareToAscii( "getCommandInfo" ) ) // no exceptions in execute()
355 else if( ! aCommand.Name.compareToAscii( "setPropertyValues" ) ) in execute()
359 if( ! ( aCommand.Argument >>= sPropertyValues ) ) in execute()
365 else if( ! aCommand.Name.compareToAscii( "getPropertyValues" ) ) in execute()
369 if( ! ( aCommand.Argument >>= ListOfRequestedProperties ) ) in execute()
376 else if( ! aCommand.Name.compareToAscii( "open" ) ) in execute()
379 if( ! ( aCommand.Argument >>= aOpenArgument ) ) in execute()
389 else if( ! aCommand.Name.compareToAscii( "delete" ) ) in execute()
[all …]
/AOO42X/main/odk/examples/cpp/complextoolbarcontrols/
H A DListenerHelper.cxx41 const ::rtl::OUString& aCommand ) in AddListener()
50 aListeners[i].aContainer[aCommand].push_back( xControl ); in AddListener()
56 const ::rtl::OUString& aCommand ) in RemoveListener()
63 StatusListeners& aL = aListeners[i].aContainer[aCommand]; in RemoveListener()
81 const ::rtl::OUString& aCommand, in Notify()
90 StatusListeners& aL = aListeners[i].aContainer[aCommand]; in Notify()
103 const ::rtl::OUString& aCommand ) in GetDispatch()
118 const ::rtl::OUString& aCommand ) in AddDispatch()
/AOO42X/main/ucbhelper/workben/myucp/
H A Dmyucp_content.cxx220 const ucb::Command& aCommand, in execute() argument
229 if ( aCommand.Name.equalsAsciiL( in execute()
237 if ( !( aCommand.Argument >>= Properties ) ) in execute()
251 else if ( aCommand.Name.equalsAsciiL( in execute()
259 if ( !( aCommand.Argument >>= aProperties ) ) in execute()
285 else if ( aCommand.Name.equalsAsciiL( in execute()
295 else if ( aCommand.Name.equalsAsciiL( in execute()
306 else if ( aCommand.Name.equalsAsciiL( in execute()
310 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
397 else if ( aCommand.Name.equalsAsciiL( in execute()
[all …]
/AOO42X/main/xmlhelp/source/cxxhelp/provider/
H A Dcontent.cxx306 const ucb::Command& aCommand, in execute() argument
315 if ( aCommand.Name.compareToAscii( "getPropertyValues" ) == 0 ) in execute()
318 if ( !( aCommand.Argument >>= Properties ) ) in execute()
326 else if ( aCommand.Name.compareToAscii( "setPropertyValues" ) == 0 ) in execute()
330 if( ! ( aCommand.Argument >>= propertyValues ) ) { in execute()
349 else if ( aCommand.Name.compareToAscii( "getPropertySetInfo" ) == 0 ) in execute()
354 else if ( aCommand.Name.compareToAscii( "getCommandInfo" ) == 0 ) in execute()
359 else if ( aCommand.Name.compareToAscii( "open" ) == 0 ) in execute()
362 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
373 aCommand, in execute()
[all …]
/AOO42X/main/ucb/source/ucp/odma/
H A Dodma_content.cxx218 const ucb::Command& aCommand, in execute() argument
227 if ( aCommand.Name.equalsAsciiL( in execute()
235 if ( !( aCommand.Argument >>= Properties ) ) in execute()
249 else if ( aCommand.Name.equalsAsciiL( in execute()
257 if ( !( aCommand.Argument >>= aProperties ) ) in execute()
283 else if ( aCommand.Name.equalsAsciiL( in execute()
293 else if ( aCommand.Name.equalsAsciiL( in execute()
303 else if ( aCommand.Name.equalsAsciiL( in execute()
307 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
425 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "close" ) ) ) in execute()
[all …]
/AOO42X/main/extensions/source/bibliography/
H A Dframectr.cxx126 … rtl::OUString aCommand( rtl::OUString::createFromAscii( SupportedCommandsArray[i].pCommand )); in GetCommandToInfoCache() local
131 aCmdToInfoCache.insert( CmdToInfoCache::value_type( aCommand, aDispatchInfo )); in GetCommandToInfoCache()
443 String aCommand( _rURL.Path); in dispatch() local
444 if(aCommand.EqualsAscii("Bib/Mapping")) in dispatch()
448 else if(aCommand.EqualsAscii("Bib/source")) in dispatch()
452 else if(aCommand.EqualsAscii("Bib/sdbsource")) in dispatch()
471 else if(aCommand.EqualsAscii("Bib/autoFilter")) in dispatch()
501 else if(aCommand.EqualsAscii("Bib/standardFilter")) in dispatch()
575 else if(aCommand.EqualsAscii("Bib/removeFilter")) in dispatch()
580 aCommand.EqualsAscii("CloseDoc")) in dispatch()
[all …]
/AOO42X/main/ucb/source/ucp/gio/
H A Dgio_content.cxx902 const ucb::Command& aCommand, in execute() argument
910 …fprintf(stderr, "Content::execute %s\n", rtl::OUStringToOString(aCommand.Name, RTL_TEXTENCODING_UT… in execute()
914 if (aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getPropertyValues" ) )) in execute()
917 if ( !( aCommand.Argument >>= Properties ) ) in execute()
921 else if (aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getPropertySetInfo" ) )) in execute()
923 else if (aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getCommandInfo" ) )) in execute()
925 else if (aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "open" ) )) in execute()
928 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
932 else if (aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "transfer" ) )) in execute()
935 if ( !( aCommand.Argument >>= transferArgs ) ) in execute()
[all …]
/AOO42X/main/ucb/source/ucp/webdav/
H A Dwebdavcontent.cxx510 const ucb::Command& aCommand, in execute() argument
518 rtl::OUStringToOString( aCommand.Name, in execute()
524 if ( aCommand.Name.equalsAsciiL( in execute()
532 if ( !( aCommand.Argument >>= Properties ) ) in execute()
546 else if ( aCommand.Name.equalsAsciiL( in execute()
554 if ( !( aCommand.Argument >>= aProperties ) ) in execute()
580 else if ( aCommand.Name.equalsAsciiL( in execute()
591 else if ( aCommand.Name.equalsAsciiL( in execute()
601 else if ( aCommand.Name.equalsAsciiL( in execute()
609 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
[all …]
/AOO42X/main/connectivity/source/drivers/ado/
H A DAViews.cxx72 WpADOCommand aCommand; in appendObject() local
73 aCommand.Create(); in appendObject()
74 if ( !aCommand.IsValid() ) in appendObject()
78 aCommand.put_Name(sName); in appendObject()
79aCommand.put_CommandText(getString(descriptor->getPropertyValue(OMetaConnection::getPropMap().getN… in appendObject()
81 if(FAILED(pViews->Append(OLEString(sName),aCommand))) in appendObject()
/AOO42X/main/shell/source/unix/exec/
H A Dshellexec.cxx135 void SAL_CALL ShellExec::execute( const OUString& aCommand, const OUString& aParameter, sal_Int32 n… in execute() argument
144 sal_Int32 nIndex = aCommand.indexOf( OUString( RTL_CONSTASCII_USTRINGPARAM(":/") ) ); in execute()
146 if( nIndex > 0 || 0 == aCommand.compareToAscii("mailto:", 7) ) in execute()
154 m_xContext)->translateToExternal(aCommand)); in execute()
155 if ( aURL.getLength() == 0 && aCommand.getLength() != 0 ) in execute()
161 + aCommand), in execute()
264 escapeForShell(aBuffer, OUStringToOString(aCommand, osl_getThreadTextEncoding())); in execute()
/AOO42X/main/ucb/source/ucp/hierarchy/
H A Dhierarchycontent.cxx370 const ucb::Command& aCommand, in execute() argument
379 if ( aCommand.Name.equalsAsciiL( in execute()
387 if ( !( aCommand.Argument >>= Properties ) ) in execute()
401 else if ( aCommand.Name.equalsAsciiL( in execute()
409 if ( !( aCommand.Argument >>= aProperties ) ) in execute()
435 else if ( aCommand.Name.equalsAsciiL( in execute()
444 else if ( aCommand.Name.equalsAsciiL( in execute()
453 else if ( aCommand.Name.equalsAsciiL( in execute()
461 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
477 else if ( aCommand.Name.equalsAsciiL( in execute()
[all …]
/AOO42X/main/ucb/source/ucp/gvfs/
H A Dgvfs_content.cxx284 const ucb::Command& aCommand, in execute() argument
300 OUStringToGnome( aCommand.Name ), in execute()
307 if ( COMMAND_IS( aCommand, "getPropertyValues" ) ) { in execute()
310 if ( !( aCommand.Argument >>= Properties ) ) in execute()
315 } else if ( COMMAND_IS( aCommand, "setPropertyValues" ) ) { in execute()
318 if ( !( aCommand.Argument >>= aProperties ) || in execute()
324 } else if ( COMMAND_IS( aCommand, "getPropertySetInfo" ) ) { in execute()
327 } else if ( COMMAND_IS( aCommand, "getCommandInfo" ) ) { in execute()
330 } else if ( COMMAND_IS( aCommand, "open" ) ) { in execute()
338 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
[all …]
/AOO42X/main/framework/source/uielement/
H A Dfontsizemenucontroller.cxx206 rtl::OUString aCommand; in fillPopupMenu() local
224 aCommand = aFontHeightCommand + rtl::OUString::valueOf( fPoint ); in fillPopupMenu()
225 pVCLPopupMenu->SetItemCommand( nPos, aCommand ); in fillPopupMenu()
243 aCommand = aFontHeightCommand + rtl::OUString::valueOf( fPoint ); in fillPopupMenu()
244 pVCLPopupMenu->SetItemCommand( nPos, aCommand ); in fillPopupMenu()
262 aCommand = aFontHeightCommand + rtl::OUString::valueOf( fPoint ); in fillPopupMenu()
263 pVCLPopupMenu->SetItemCommand( nPos, aCommand ); in fillPopupMenu()
/AOO42X/main/ucb/source/ucp/ext/
H A Ducpext_content.cxx211 …Any SAL_CALL Content::execute( const Command& aCommand, sal_Int32 /* CommandId */, const Reference… in execute() argument
216 if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getPropertyValues" ) ) ) in execute()
219 if ( !( aCommand.Argument >>= Properties ) ) in execute()
229 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "setPropertyValues" ) ) ) in execute()
232 if ( !( aCommand.Argument >>= aProperties ) ) in execute()
250 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getPropertySetInfo" ) ) ) in execute()
255 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "getCommandInfo" ) ) ) in execute()
260 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "open" ) ) ) in execute()
263 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
/AOO42X/main/svl/inc/svl/
H A Downlist.hxx48 String aCommand; member in SvCommand
54 aCommand = rCommand; in SvCommand()
57 const String & GetCommand() const { return aCommand; } in GetCommand()
62 rStm.ReadByteString( rThis.aCommand, gsl_getSystemTextEncoding() ); in operator >>()
68 rStm.WriteByteString( rThis.aCommand, gsl_getSystemTextEncoding() ); in operator <<()

1234567