Searched refs:run (Results 1 - 25 of 98) sorted by relevance

1234

/libcore/luni/src/main/java/java/lang/
H A DRunnable.java22 * Represents a command that can be executed. Often used to run code in a
32 public void run(); method in interface:Runnable
H A DDaemons.java68 public abstract void run(); method in class:Daemons.Daemon
71 * Returns true while the current thread should continue to run; false
124 @Override public void run() { method in class:Daemons.ReferenceQueueDaemon
166 @Override public void run() { method in class:Daemons.FinalizerDaemon
205 @Override public void run() { method in class:Daemons.FinalizerWatchdogDaemon
/libcore/dalvik/src/main/java/dalvik/system/
H A DNativeStart.java38 private static native void run(); method in class:NativeStart
/libcore/luni/src/main/java/java/security/
H A DPrivilegedAction.java24 public T run(); method in interface:PrivilegedAction
H A DPrivilegedExceptionAction.java24 T run() throws Exception; method in interface:PrivilegedExceptionAction
H A DAccessController.java42 * Calls {@code action.run()}.
45 return action.run();
49 * Calls {@code action.run()}.
52 return action.run();
56 * Calls {@code action.run()}.
60 return action.run();
69 * Calls {@code action.run()}.
76 * Calls {@code action.run()}.
79 return action.run();
83 * Calls {@code action.run()}
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DRunnableFuture.java11 * the <tt>run</tt> method causes completion of the <tt>Future</tt>
24 void run(); method in interface:RunnableFuture
H A DExecutors.java174 * to run after a given delay, or to execute periodically.
192 * to run after a given delay, or to execute periodically. (Note
212 * Creates a thread pool that can schedule commands to run after a
224 * Creates a thread pool that can schedule commands to run after a
301 * @param task the task to run
315 * @param task the task to run
328 * @param action the privileged action to run
336 public Object call() { return action.run(); }};
343 * @param action the privileged exception action to run
351 public Object call() throws Exception { return action.run(); }};
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DDelegatedTask.java33 public void run() { method in class:DelegatedTask
36 action.run();
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DPrivilegedActionTest.java17 public String run() { method in class:PrivilegedActionTest.MyPrivilegedAction
26 public String run() { method in class:PrivilegedActionTest.MyPrivilegedAction2
37 assertTrue("run method was not called", action.called);
/libcore/luni/src/main/java/java/util/
H A DTimerTask.java21 * The {@code TimerTask} class represents a task to run at a specified time. The task
22 * may be run once or repeatedly.
102 * have not yet run return an undefined value.
113 * The task to run should be specified in the implementation of the {@code run()}
116 public abstract void run(); method in class:TimerTask
/libcore/luni/src/test/java/sun/misc/
H A DUnsafeTest.java40 public void run() {
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadTest.java31 public void run() { method in class:OldThreadTest.SimpleThread
106 public void run() {
115 public void run() {
158 public void run() {
194 public void run() {
241 public void run() {
295 public void run() { method in class:OldThreadTest.Counter
314 public void run() {
319 while (run) {}
350 run
372 volatile boolean run = true; field in class:OldThreadTest
[all...]
H A DOldInheritableThreadLocalTest.java39 public void run() {
H A DThreadTest.java76 @Override public void run() {
102 @Override public void run() {
H A DOldAndroidMonitorTest.java113 public void run() { method in class:OldAndroidMonitorTest.Interrupter
177 public void run() { method in class:OldAndroidMonitorTest.Waiter
322 public void run() { method in class:OldAndroidMonitorTest.Worker
382 public void run() { method in class:OldAndroidMonitorTest.CompareAndExchange
422 public void run() { method in class:OldAndroidMonitorTest.CompareAndExchange.Worker
425 /* Latch this because run() may set the static field to
/libcore/luni/src/test/java/libcore/java/net/
H A DServerSocketTest.java32 public void run() {
/libcore/support/src/test/java/tests/support/
H A DSupport_ProviderTrust.java54 public Void run() {
H A DSupport_TestProvider.java53 public Void run() {
/libcore/luni/src/test/java/libcore/java/security/
H A DAccessControllerTest.java51 public Void run() {
57 public Void run() {
/libcore/luni/src/test/java/tests/support/
H A DThreadPool.java96 public void run() { method in class:ThreadPool.PooledThread
111 Logger.global.info("Task is run");
112 task.run();
/libcore/luni/src/main/java/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java43 @Override public void run() {
68 * one thread will run the closure code and the others will be blocked until
/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DDeleteOnExit.java72 public void run() { method in class:DeleteOnExit
/libcore/luni/src/test/java/tests/java/sql/
H A DMultiThreadAccessTest.java240 public void run() {
272 public void run() {
323 public void run() {
351 public void run() {
371 public void run() {
396 public void run() {
420 public void run() {
/libcore/luni/src/main/java/java/text/
H A DBidi.java33 * <p>If the text contains multiple runs, the information of each run can be
34 * obtained from the run index. The level of any particular run indicates the
338 // Simplified case for one run which has the base level
465 * Returns the level of the specified run.
467 * @param run
468 * the index of the run.
469 * @return the level of the run.
471 public int getRunLevel(int run) { argument
472 return unidirectional ? baseLevel : runs[run]
482 getRunLimit(int run) argument
493 getRunStart(int run) argument
[all...]

Completed in 543 milliseconds

1234