/aoo41x/main/framework/qa/complex/api_internal/ |
H A D | worksforme.sce | 22 job=sc.ScCellFieldObj 23 job=sc.ScCellFieldsObj 24 job=sc.XMLImporter 25 job=sc.XMLMetaExporter 27 job=sd.SdDrawPage 30 job=sd.SdXPresentation 32 job=sfx.SfxMacroLoader 39 job=sw.SwXBodyText 40 job=sw.XMLExporter 41 job=sw.XMLImporter [all …]
|
/aoo41x/main/qadevOOo/runner/helper/ |
H A D | APIDescGetter.java | 78 if (job.startsWith("-o")) in getDescriptionFor() 80 job = job.substring(3, job.length()).trim(); in getDescriptionFor() 108 String partjob = job.substring(0, job.indexOf(",")).trim(); in getDescriptionFor() 141 job = job.substring(3, job.length()).trim(); in getDescriptionFor() 164 job = job.substring(5, job.length()).trim(); in getDescriptionFor() 196 fullJob = job; in getDescriptionForSingleJob() 200 job = job.substring(0, job.indexOf("::")); in getDescriptionForSingleJob() 802 if (!job.equals("unknown") && !job.equals("listall")) in getScenarioFromDirectory() 806 job in getScenarioFromDirectory() 860 if (!job.equals("unknown") && !job.equals("listall")) in getScenarioFromClassPath() [all …]
|
/aoo41x/main/bridges/source/jni_uno/ |
H A D | nativethreadpool.cxx | 59 jobject job; member 74 Job * job = static_cast< Job * >(data); in executeRequest() local 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 162 if (job == 0) { in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_enter() 165 jobject ref = env->NewLocalRef(job); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_enter() 166 env->DeleteGlobalRef(job); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_enter() [all …]
|
/aoo41x/main/jurt/com/sun/star/lib/uno/environments/remote/ |
H A D | JobQueue.java | 203 Job job = null; in removeJob() local 237 job = current; in removeJob() 265 return job; in removeJob() 278 _tail._next = job; in putJob() 280 _head = job; in putJob() 282 _tail = job; in putJob() 327 Job job = null; in enter() local 332 if(job != null) { in enter() 340 if (!job.isRequest()) { in enter() 341 job.dispose(); in enter() [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()
|
/aoo41x/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()
|
/aoo41x/main/qadevOOo/runner/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()
|
/aoo41x/main/solenv/bin/ |
H A D | build.pl | 1042 return if (!$job); 1043 $job = "$module $job"; 1046 $$deps_hash{$job}++; 1057 return if (!$job); 2005 my $job_to_do = $job; 2034 my $job = $'; 2037 if ($job eq $pre_job) { 3150 my $job = shift; 3451 my $job = $dmake; 3489 $job = $'; [all …]
|
/aoo41x/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
|
/aoo41x/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()
|
/aoo41x/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()
|
/aoo41x/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()
|
/aoo41x/main/soldep/bootstrp/ |
H A D | build_list_converter.pl | 551 my $job = $2; 552 $job = "make" if ($job eq "nmake"); 579 $XMLTree->addJob($job_dir, $job, $job_platform, $directories_ref, \%build_req); 584 …show_line_infos($line_number, $job_dir, $job, $job_platform, $restriction, $aliases_ref, $director… 739 …my ($line_number, $job_dir, $job, $job_platform, $restriction, $aliases_ref, $directories_ref) = @… 743 print"job : <$job>\n";
|
/aoo41x/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()
|
/aoo41x/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
|
/aoo41x/main/qadevOOo/tests/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()
|
/aoo41x/main/offapi/com/sun/star/util/ |
H A D | XCancellable.idl | 37 /** offers the possibility of cancelling a job. 39 <p>This is supported by objects which represent a job. 44 /** cancels the current job of the object.
|
/aoo41x/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.
|
/aoo41x/main/qadevOOo/runner/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()
|
/aoo41x/main/jurt/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()
|
/aoo41x/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()
|