Searched defs:run (Results 1 - 25 of 105) sorted by last modified time

12345

/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jar ... framework.Test, junit.framework.TestResult) public void run () } junit/extensions/ActiveTestSuite.class ActiveTestSuite.java package junit ...
/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebServer.java226 public void run() { method in class:Support_TestWebServer.AcceptThread
335 public synchronized void run() { method in class:Support_TestWebServer.Worker
/libcore/support/src/test/java/tests/util/
H A DForEachRunner.java32 void run(T value) throws Exception; method in interface:ForEachRunner.Callback
48 callback.run(nameAndValue.getSecond());
/libcore/tools/upstream/src/main/java/libcore/
H A DCompareUpstreams.java49 * To check out upstreams OpenJDK 7u40, 8u60, 8u121-b13, and 9+181, run:
182 private void run(PrintStream out, List<Path> relPaths) throws IOException { method in class:CompareUpstreams
248 public void run() throws IOException { method in class:CompareUpstreams
250 run(System.out, relPaths);
256 action.run();
H A DCopyUpstreamFiles.java38 public void run() throws IOException { method in class:CopyUpstreamFiles
85 new CopyUpstreamFiles(standardRepositories, outputDir).run();
/libcore/ojluni/src/main/java/java/security/
H A DPrivilegedAction.java37 T run(); method in interface:PrivilegedAction
H A DPrivilegedExceptionAction.java36 T run() throws Exception; method in interface:PrivilegedExceptionAction
/libcore/ojluni/src/main/java/java/text/
H A DBidi.java52 * by indexing to get the start, limit, and level of a run. The level represents
53 * both the direction and the 'nesting level' of a directional run. Odd levels
56 * level 2 represents left-to-right text embedded in a right-to-left run.
240 * and right-to-left text, or the base direction differs from the direction of the only run of text.
312 // Android-changed: ICU treats the empty string as having 0 runs, we see it as 1 empty run.
318 * Return the level of the nth logical run in this line.
319 * @param run the index of the run, between 0 and <code>getRunCount()</code>
320 * @return the level of the run
322 public int getRunLevel(int run) { argument
337 getRunStart(int run) argument
353 getRunLimit(int run) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DTimer.java48 * default, the task execution thread does not run as a <i>daemon thread</i>,
136 * {@linkplain Thread#setDaemon run as a daemon}.
144 * {@linkplain Thread#setDaemon run as a daemon}.
150 * @param isDaemon true if the associated thread should run as a daemon.
159 * {@linkplain Thread#setDaemon run as a daemon}.
173 * {@linkplain Thread#setDaemon run as a daemon}.
176 * @param isDaemon true if the associated thread should run as a daemon
227 * In the long run, the frequency of execution will generally be slightly
234 * in the short run than in the long run
510 public void run() { method in class:TimerThread
[all...]
H A DTimerTask.java92 public abstract void run(); method in class:TimerTask
96 * execution and has not yet run, or has not yet been scheduled, it will
97 * never run. If the task has been scheduled for repeated execution, it
98 * will never run again. (If the task is running when this call occurs,
99 * the task will run to completion, but will never run again.)
101 * <p>Note that calling this method from within the <tt>run</tt> method of
103 * not run again.
109 * not yet run, or this task is scheduled for repeated execution.
111 * and has already run, o
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCompletableFuture.java69 * which case, a new Thread is created to run each task).
179 * not async and x is already complete, the action is run
450 public final void run() { tryFire(ASYNC); } method in class:CompletableFuture.Completion
467 * and run. It is extended along only one path at a time,
526 * Returns true if action can be run. Call only when known to
529 * later call to tryFire will run action.
713 f.run();
1271 f.run();
1533 f.run();
1617 public final boolean exec() { run(); retur
1619 public void run() { method in class:CompletableFuture.AsyncSupply
1655 public void run() { method in class:CompletableFuture.AsyncRun
2696 public void run() { executor.execute(action); } method in class:CompletableFuture.TaskSubmitter
2703 public void run() { method in class:CompletableFuture.Timeout
2714 public void run() { method in class:CompletableFuture.DelayedCompleter
[all...]
H A DForkJoinTask.java52 * Abstract base class for tasks that run within a {@link ForkJoinPool}.
225 * The status field holds run control status bits packed into a
246 /** The run status of this task */
1379 public final boolean exec() { runnable.run(); return true; }
1380 public final void run() { invoke(); } method in class:ForkJoinTask.AdaptedRunnable
1396 public final boolean exec() { runnable.run(); return true; }
1397 public final void run() { invoke(); } method in class:ForkJoinTask.AdaptedRunnableAction
1412 public final boolean exec() { runnable.run(); return true; }
1442 public final void run() { invoke(); } method in class:ForkJoinTask.AdaptedCallable
1447 * Returns a new {@code ForkJoinTask} that performs the {@code run}
[all...]
H A DForkJoinWorkerThread.java149 * called explicitly. It performs the main run loop to execute
152 public void run() { method in class:ForkJoinWorkerThread
153 if (workQueue.array == null) { // only run once
H A DFutureTask.java78 * The run state of this task, initially NEW. The run state
106 /** The thread running the callable; CASed during run() */
225 * <p>This method is invoked internally by the {@link #run} method
243 * <p>This method is invoked internally by the {@link #run} method
256 public void run() { method in class:FutureTask
278 // prevent concurrent calls to run()
295 * @return {@code true} if successfully run and reset
315 // prevent concurrent calls to run()
328 * delivered to a task while in run o
[all...]
H A DRunnableFuture.java40 * the {@code run} method causes completion of the {@code Future}
53 void run(); method in interface:RunnableFuture
H A DScheduledThreadPoolExecutor.java57 * commands to run after a given delay, or to execute periodically.
69 * <p>When a submitted task is cancelled before it is run, execution
90 * without threads to handle tasks once they become eligible to run.
148 * 3. Supporting optional run-after-shutdown parameters, which
150 * tasks that should NOT be run after shutdown, as well as
273 * Sets the next time to run for a periodic task.
296 public void run() { method in class:ScheduledThreadPoolExecutor.ScheduledFutureTask
301 super.run();
310 * Returns true if can run a task given current run stat
[all...]
H A DThreadPoolExecutor.java176 * will fail if no threads are immediately available to run it, so a
369 * will run the terminated() hook method
603 * instead interrupting a task being run. We implement a simple
624 /** Initial task to run. Possibly null. */
639 /** Delegates main run loop to outer runWorker. */
640 public void run() { method in class:ThreadPoolExecutor.Worker
852 * Performs any further cleanup following run state transition on
905 * @param firstTask the task the new thread should run first (or
1103 * Main worker run loop. Repeatedly gets tasks from queue and
1119 * 3. Each task run i
[all...]
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogManager.java114 * arbitrary configuration code to be run. The property defines a
182 public LogManager run() {
216 public void run() { method in class:LogManager.Cleaner
331 public Object run() {
389 public Void run() throws Exception {
574 public Void run() {
851 public Void run() {
955 public Object run() {
1181 public Object run() {
1200 public Object run() {
[all...]
/libcore/ojluni/src/main/java/java/util/prefs/
H A DAbstractPreferences.java1026 public Boolean run() {
1442 public void run() { method in class:AbstractPreferences.EventDispatchThread
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DEPollPort.java248 public void run() { method in class:EPollPort.EventHandlerTask
285 // run task (may throw error/exception)
287 task.run();
H A DFileChannelImpl.java862 public void run() { method in class:FileChannelImpl.Unmapper
H A DIOVecWrapper.java76 public void run() { method in class:IOVecWrapper.Deallocator
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DCancellable.java93 public final void run() { method in class:Cancellable
H A DLinuxWatchService.java338 public void run() { method in class:LinuxWatchService.Poller
499 public Void run() {
H A DNativeBuffer.java51 public void run() { method in class:NativeBuffer.Deallocator

Completed in 432 milliseconds

12345