Searched refs:job (Results 26 - 40 of 40) sorted by relevance

12

/openjdk7/jdk/test/javax/management/notification/
H A DNotifExecutorTest.java179 public synchronized void execute(Runnable job) { argument
184 super.execute(job);
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java101 private PrinterJob job; field in class:UnixPrintJob
133 /* just return an empty set until the job is submitted */
169 * to get a reference in order to close it because the job failed.
316 throw new PrintException("Printer is not accepting job.");
467 * CUPS) and at that time the job will be spooled via IPP
615 if (job != null) { // shouldn't happen
618 job = new PSPrinterJob();
621 job.setPrintService(getPrintService());
622 job.setCopies(copies);
623 job
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinPool.java1565 ForkJoinTask<?> job;
1567 job = (ForkJoinTask<?>) task;
1569 job = ForkJoinTask.adapt(task, null);
1570 forkOrSubmit(job);
1597 ForkJoinTask<T> job = ForkJoinTask.adapt(task);
1598 forkOrSubmit(job);
1599 return job;
1610 ForkJoinTask<T> job = ForkJoinTask.adapt(task, result);
1611 forkOrSubmit(job);
1612 return job;
[all...]
/openjdk7/jdk/test/java/lang/Class/
H A DTypeCheckMicroBenchmark.java59 * Runs each job for long enough that all the runtime compilers
62 * Returns array of average times per job per run.
112 // Print out absolute and relative times, calibrated against first job
140 for (Job job : jobs)
141 if (filter.matcher(job.name()).find())
142 newJobs[n++] = job;
/openjdk7/jdk/test/java/util/ArrayList/
H A DRangeCheckMicroBenchmark.java60 * Runs each job for long enough that all the runtime compilers
63 * Returns array of average times per job per run.
113 // Print out absolute and relative times, calibrated against first job
139 for (Job job : jobs)
140 if (filter.matcher(job.name()).find())
141 newJobs[n++] = job;
H A DIteratorMicroBenchmark.java62 * Runs each job for long enough that all the runtime compilers
65 * Returns array of average times per job per run.
115 // Print out absolute and relative times, calibrated against first job
141 for (Job job : jobs)
142 if (filter.matcher(job.name()).find())
143 newJobs[n++] = job;
/openjdk7/jdk/test/sun/nio/cs/
H A DStrCodingBenchmark.java57 * Runs each job for long enough that all the runtime compilers
60 * Returns array of average times per job per run.
110 // Print out absolute and relative times, calibrated against first job
119 for (Job job : jobs)
120 if (filter.matcher(job.name()).find())
121 newJobs[n++] = job;
/openjdk7/jdk/test/java/nio/Buffer/
H A DSwapMicroBenchmark.java63 * Runs each job for long enough that all the runtime compilers
66 * Returns array of average times per job per run.
116 // Print out absolute and relative times, calibrated against first job
142 for (Job job : jobs)
143 if (filter.matcher(job.name()).find())
144 newJobs[n++] = job;
/openjdk7/jdk/test/java/awt/print/PrinterJob/ImagePrinting/
H A DClippedImages.java192 void setPrinterJob(PrinterJob job, boolean pageable) { argument
193 this.myPrinterJob = job;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java106 * A class which initiates and executes a PostScript printer job.
417 * print job interactively.
1007 * print job to the printer's control language
1013 * causes the print job to be rasterized.
2166 private PSPrinterJob job; field in class:PSPrinterJob.EPSPrinter
2204 job = new PSPrinterJob();
2205 job.epsPrinter = this; // modifies the behaviour of PSPrinterJob
2206 job.mPSStream = stream;
2207 job.mDestType = RasterPrinterJob.STREAM; // prevents closure
2209 job
[all...]
H A DRasterPrinterJob.java103 * A class which rasterizes a printer job.
142 * then each page of a print job will be rendered through
149 * then each page of a print job will be rendered through
247 * The name of the job being printed.
272 * These take precedence over values set on a printer job
311 * Service for this job
451 * Returns the service (printer) for this printer job.
454 * @return the service for this printer job.
779 * print job interactively.
916 * print job interactivel
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java667 * The job of honoring this property, and recognizing a user drag gesture,
2114 * @throws PrinterException if an error in the print system causes the job
2117 * initiate a print job request
2144 * @throws PrinterException if an error in the print system causes the job
2147 * initiate a print job request
2184 * be used to control how the job will print, for example
2252 * @param attributes the job attributes to be applied to the print job, or
2256 * @throws PrinterException if an error in the print system causes the job
2259 * initiate a print job reques
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java720 * Adds a job that will be executed at the last of the unmarshalling.
724 * @param job
727 public void addPatcher( Patcher job ) {
736 patchers[patchersLen++] = job;
756 * transducer to do its job.
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java1406 * The job of honoring this property, and recognizing a user drag gesture,
5991 * initiate a print job request
5992 * @throws PrinterException if an error in the print system causes the job
6017 * initiate a print job request
6018 * @throws PrinterException if an error in the print system causes the job
6049 * initiate a print job request
6050 * @throws PrinterException if an error in the print system causes the job
6091 * initiate a print job request
6092 * @throws PrinterException if an error in the print system causes the job
6187 * method disallows this thread from creating a print job reques
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp259 static void pageFormatToSetup(JNIEnv *env, jobject job, jobject page,
1071 * must have happened is the app de-associated the job from the file, but
3032 static void pageFormatToSetup(JNIEnv *env, jobject job,
3058 WORD dmPaperSize = getPrintPaperSize(env, job);

Completed in 134 milliseconds

12