Lines Matching refs:aCommand
283 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()
460 if ( !( aCommand.Argument >>= aOpenCommand ) ) in execute()
499 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "insert" ) ) ) in execute()
506 if ( !( aCommand.Argument >>= arg ) ) in execute()
518 else if ( aCommand.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "delete" ) ) ) in execute()
532 aRet = OContentHelper::execute(aCommand,CommandId,Environment); in execute()
593 Command aCommand; in loadComponentFromURL() local
596 …aCommand.Name = aArgs.getOrDefault( "OpenMode", ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ope… in loadComponentFromURL()
603 aCommand.Argument <<= aArgs.getPropertyValues(); in loadComponentFromURL()
604 …xComp.set(xContent->execute(aCommand,xContent->createCommandIdentifier(),Reference< XCommandEnviro… in loadComponentFromURL()
788 Command aCommand; in removeByName() local
790 aCommand.Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("delete")); in removeByName()
791 …xContent->execute(aCommand,xContent->createCommandIdentifier(),Reference< XCommandEnvironment >()); in removeByName()