| /trunk/main/framework/qa/complex/api_internal/ |
| H A D | worksforme.sce | 21 job=fileacc.SimpleFileAccess 22 job=sc.ScCellFieldObj 23 job=sc.ScCellFieldsObj 24 job=sc.XMLImporter 25 job=sc.XMLMetaExporter 26 job=sd.SdDocLinkTargets 27 job=sd.SdDrawPage 28 job=sd.SdMasterPagesAccess 29 job=sd.SdXCustomPresentation 30 job=sd.SdXPresentation [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/helper/ |
| H A D | APIDescGetter.java | 74 public DescEntry[] getDescriptionFor(String job, String descPath, in getDescriptionFor() argument 78 if (job.startsWith("-o")) in getDescriptionFor() 80 job = job.substring(3, job.length()).trim(); in getDescriptionFor() 82 if (job.indexOf(".") < 0) in getDescriptionFor() 88 if (job.indexOf(",") < 0) in getDescriptionFor() 90 DescEntry entry = getDescriptionForSingleJob(job, descPath, in getDescriptionFor() 107 ArrayList subs = getSubInterfaces(job); in getDescriptionFor() 108 String partjob = job.substring(0, job.indexOf(",")).trim(); in getDescriptionFor() 139 if (job.startsWith("-p")) in getDescriptionFor() 141 job = job.substring(3, job.length()).trim(); in getDescriptionFor() [all …]
|
| /trunk/main/bridges/source/jni_uno/ |
| H A D | nativethreadpool.cxx | 56 Job(Pool * thePool, jobject theJob): pool(thePool), job(theJob) {} in Job() 59 jobject job; member 74 Job * job = static_cast< Job * >(data); in executeRequest() local 76 jvmaccess::VirtualMachine::AttachGuard guard(job->pool->virtualMachine); in executeRequest() 81 env->CallObjectMethod(job->job, job->pool->execute); in executeRequest() 82 env->DeleteGlobalRef(job->job); in executeRequest() 83 delete job; in executeRequest() 86 delete job; in executeRequest() 158 jobject job; in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_enter() local 161 reinterpret_cast< void ** >(&job)); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_enter() [all …]
|
| /trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/ |
| H A D | JobQueue.java | 203 Job job = null; in removeJob() local 237 job = current; in removeJob() 243 if(job != null && _async_jobQueue != null) { in removeJob() 265 return job; in removeJob() 274 synchronized void putJob(Job job, Object disposeId) { in putJob() argument 275 …if(DEBUG) System.err.println("##### " + getClass().getName() + ".putJob todoes: " + " job:" + job); in putJob() 278 _tail._next = job; in putJob() 280 _head = job; in putJob() 282 _tail = job; in putJob() 327 Job job = null; in enter() local [all …]
|
| H A D | NativeThreadPool.java | 53 Job job = enter(pool); in enter() local 54 if (job == null) { in enter() 57 return job.execute(); in enter() 64 public void putJob(Job job) { in putJob() argument 66 pool, job.getThreadId().getBytes(), job, job.isRequest(), in putJob() 67 job.isRequest() && !job.isSynchronous()); in putJob() 90 long pool, byte[] threadId, Job job, boolean request, boolean oneWay); in putJob() argument
|
| H A D | JavaThreadPool.java | 90 public void putJob(Job job) { in putJob() argument 91 if (!job.isRequest() || job.isSynchronous()) { in putJob() 92 JobQueue jobQueue = _javaThreadPoolFactory.getJobQueue(job.getThreadId()); in putJob() 98 jobQueue = new JobQueue(_javaThreadPoolFactory, job.getThreadId(), true); in putJob() 101 jobQueue.putJob(job, this); in putJob() 108 … JobQueue async_jobQueue = _javaThreadPoolFactory.getAsyncJobQueue(job.getThreadId()); in putJob() 112 async_jobQueue = new JobQueue(_javaThreadPoolFactory, job.getThreadId()); in putJob() 115 async_jobQueue.putJob(job, this); in putJob()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/ |
| H A D | SpreadsheetRawReportProcessor.java | 89 protected ReportTarget createReportTarget(final ReportJob job) throws ReportProcessingException in createReportTarget() argument 91 final ReportStructureRoot report = job.getReportStructureRoot(); in createReportTarget() 93 …return new SpreadsheetRawReportTarget(job, resourceManager, report.getBaseResource(), inputReposit… in createReportTarget() 96 …public void processReport(final ReportJob job) throws ReportDataFactoryException, DataSourceExcept… in processReport() argument 99 final ReportTarget reportTarget = createReportTarget(job); in processReport() 101 processReportRun(job, reportTarget); in processReport() 103 processReportRun(job, reportTarget); in processReport() 106 protected ReportContext createReportContext(final ReportJob job, in createReportContext() argument 109 final ReportContext context = super.createReportContext(job, target); in createReportContext() 113 …impl.setFormulaContext(new PentahoFormulaContext(impl.getFormulaContext(), job.getConfiguration())… in createReportContext()
|
| /trunk/main/solenv/bin/ |
| H A D | build.pl | 1041 my ($dependencies_hash, $module, $job) = @_; 1042 return if (!$job); 1043 $job = "$module $job"; 1046 $$deps_hash{$job}++; 1048 $$dependencies_hash{$job} = {}; 1056 my ($dependencies_hash, $module, $job) = @_; 1057 return if (!$job); 1060 $$dependencies_hash{"$module $job"} = \%deps_hash; 1303 foreach my $job (keys %$dependencies) { 1304 if (!scalar keys %{$$dependencies{$job}}) { [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/share/ |
| H A D | DescGetter.java | 44 protected abstract DescEntry getDescriptionForSingleJob(String job, in getDescriptionForSingleJob() argument 48 protected abstract String[] createScenario(String descPath, String job, in createScenario() argument 76 String job = line.substring(3, line.length()).trim(); in getScenario() local 79 if (job.indexOf(",") < 0) in getScenario() 81 aEntry = getDescriptionForSingleJob(job, descPath, in getScenario() 86 ArrayList subs = getSubInterfaces(job); in getScenario() 87 String partjob = job.substring(0, job.indexOf(",")).trim(); in getScenario() 176 protected ArrayList getSubInterfaces(String job) in getSubInterfaces() argument 179 StringTokenizer st = new StringTokenizer(job, ","); in getSubInterfaces()
|
| /trunk/main/offapi/com/sun/star/task/ |
| H A D | XJob.idl | 44 /** specifies a job which is to be executed synchronously 49 current stack context will be blocked till this job finish it's work. 57 /** executes the job synchronously 60 …are arguments for executing the job. Their semantics is completely implementation dependent. Usual… 61 …a concrete implementation of a job specifies in its service descriptions which parameters are allo… 63 which use this synchronous job. It's possible to write it back by use special protocol 67 the result of the job. The concrete semantics is service-dependent. 70 <li>deregister the job</li> 72 <li>make some job specific data persistent inside the job configuration which
|
| H A D | XJobListener.idl | 38 /** listener on finish states of asynchronous job execution 43 /** indicates that the job is done 46 identifies the asynchronous job so the <type>JobExecutor</type> 51 It provides information about success or failure of job execution. It's possible too, 53 <type>JobExecutor</type> and a real job. So it can be possible to: 56 <li>deregister the job</li> 58 <li>make some job specific data persistent inside the job configuration which
|
| H A D | XAsyncJob.idl | 46 /** specifies a job which must be executed asynchronously 52 under control, it's not allowed for a real job implementation to use such mechanism 63 /** executes the job asynchronously 66 …are arguments for executing the job. Their semantics is completely implementation dependent. Usual… 67 …a concrete implementation of a job specifies in its service descriptions which parameters are allo… 69 which use this asynchronous job. It's possible to write it back by called listener
|
| /trunk/main/cppu/source/threadpool/ |
| H A D | jobqueue.cxx | 53 Job job = { pThreadSpecificData , doRequest }; in add() local 54 m_lstJob.push_back( job ); in add() 89 struct Job job={0,0}; in enter() local 107 job = m_lstJob.front(); in enter() 116 if( job.doRequest ) in enter() 118 job.doRequest( job.pThreadSpecificData ); in enter() 124 pReturn = job.pThreadSpecificData; in enter()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/chart/ |
| H A D | ChartRawReportProcessor.java | 86 protected ReportTarget createReportTarget(final ReportJob job) in createReportTarget() argument 89 final ReportStructureRoot report = job.getReportStructureRoot(); in createReportTarget() 92 return new ChartRawReportTarget(job, resourceManager, report.getBaseResource(), in createReportTarget() 96 …public void processReport(final ReportJob job) throws ReportDataFactoryException, DataSourceExcept… in processReport() argument 99 final ReportTarget reportTarget = createReportTarget(job); in processReport() 100 processReportRun(job, reportTarget); in processReport()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/text/ |
| H A D | TextRawReportProcessor.java | 89 protected ReportTarget createReportTarget(final ReportJob job) in createReportTarget() argument 92 final ReportStructureRoot report = job.getReportStructureRoot(); in createReportTarget() 95 return new TextRawReportTarget(job, resourceManager, report.getBaseResource(), in createReportTarget() 99 protected ReportContext createReportContext(final ReportJob job, in createReportContext() argument 102 final ReportContext context = super.createReportContext(job, target); in createReportContext() 106 …impl.setFormulaContext(new PentahoFormulaContext(impl.getFormulaContext(), job.getConfiguration())… in createReportContext()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/ |
| H A D | PentahoReportJob.java | 319 private void setMetaDataProperties(DefaultReportJob job) in setMetaDataProperties() argument 321 …job.getConfiguration().setConfigProperty(ReportEngineParameterNames.AUTHOR, (String) jobProperties… in setMetaDataProperties() 322 …job.getConfiguration().setConfigProperty(ReportEngineParameterNames.TITLE, (String) jobProperties.… in setMetaDataProperties() 334 final DefaultReportJob job = new DefaultReportJob(report); in execute() local 335 setMetaDataProperties(job); in execute() 340 final ReportParameters parameters = job.getParameters(); in execute() 370 rp.processReport(job); in execute() 371 job.close(); in execute()
|
| /trunk/main/offapi/com/sun/star/view/ |
| H A D | XPrintJob.idl | 44 /** allows for getting information about a print job. 48 the context of the print job.</p> 56 /** returns the PrintOptions used for the print job 60 /** returns the Printer used for the print job 64 /** returns the printed object used for the print job
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_fwk/ |
| H A D | JobExecutor.java | 81 static Job job = new Job(); field in JobExecutor 220 Object job = null; in createTestEnvironment() local 224 job = (XInterface)((XMultiServiceFactory)Param.getMSF()).createInstance("test.Job"); in createTestEnvironment() 231 xNamed = (XNamed) UnoRuntime.queryInterface(XNamed.class, job); in createTestEnvironment()
|
| /trunk/main/offapi/com/sun/star/util/ |
| H A D | XCancellable.idl | 37 /** offers the possibility of canceling a job. 39 <p>This is supported by objects which represent a job. 44 /** cancels the current job of the object.
|
| /trunk/main/offapi/com/sun/star/awt/ |
| H A D | XPrinter.idl | 62 /** puts the job into the printer spooler. 75 /** notifies the printer spooler that the job is done and printing 85 /** stops the current print job.
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/base/ |
| H A D | java_fat_service.java | 59 String job = (String) param.get("TestJob"); in executeTest() local 63 log.println("Getting Descriptions for Job: "+job); in executeTest() 64 DescEntry[] entries = dg.getDescriptionFor(job, in executeTest()
|
| H A D | basic_fat.java | 72 String job = (String) param.get("TestJob"); in executeTest() local 78 System.out.print("Getting Descriptions for Job: " + job + " from "); in executeTest() 80 DescEntry[] entries = dg.getDescriptionFor(job, in executeTest()
|
| H A D | java_fat.java | 74 String job = (String) m_aParams.get("TestJob"); in executeTest() local 94 DescEntry[] entries = dg.getDescriptionFor(job, sDescriptionPath, m_isDebug); in executeTest() 100 System.out.println("Couldn't get Description for Job: " + job); in executeTest()
|
| /trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/ |
| H A D | AsynchronousFinalizer.java | 51 public static void add(Job job) { in add() argument 54 queue.add(job); in add()
|
| /trunk/main/scripting/java/org/openoffice/netbeans/modules/office/actions/ |
| H A D | BuildParcelAction.java | 52 CompilerJob job = createJob(v.elements(), Compiler.DEPTH_INFINITE); in performAction() local 53 CompilerTask task = job.start(); in performAction()
|