Searched defs:run (Results 1 - 25 of 110) sorted by relevance

12345

/libcore/ojluni/src/main/java/java/lang/
H A DRunnable.java31 * class must define a method of no arguments called <code>run</code>.
41 * <code>Runnable</code> can run without subclassing <code>Thread</code>
44 * be used if you are only planning to override the <code>run()</code>
60 * <code>run</code> method to be called in that separately executing
63 * The general contract of the method <code>run</code> is that it may
66 * @see java.lang.Thread#run()
68 public abstract void run(); method in interface:Runnable
/libcore/ojluni/src/main/java/java/security/
H A DPrivilegedAction.java35 T run(); method in interface:PrivilegedAction
H A DPrivilegedExceptionAction.java34 T run() throws Exception; method in interface:PrivilegedExceptionAction
/libcore/luni/src/main/java/java/util/concurrent/
H A DRunnableFuture.java11 * the {@code run} method causes completion of the {@code Future}
24 void run(); method in interface:RunnableFuture
/libcore/dalvik/src/main/java/dalvik/system/
H A DNativeStart.java38 private static native void run(); method in class:NativeStart
/libcore/dalvik/src/test/java/dalvik/system/
H A DCloseGuardMonitor.java33 * class needs to run on the reference implementation which does not have this class. It implements
76 public void run() { method in class:CloseGuardMonitor
/libcore/ojluni/src/main/java/sun/security/action/
H A DGetBooleanAction.java69 public Boolean run() { method in class:GetBooleanAction
H A DGetPropertyAction.java83 public String run() { method in class:GetPropertyAction
H A DLoadLibraryAction.java66 public Void run() { method in class:LoadLibraryAction
H A DPutAllAction.java51 public Void run() { method in class:PutAllAction
H A DGetIntegerAction.java107 public Integer run() { method in class:GetIntegerAction
/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/benchmarks/src/benchmarks/regression/
H A DDoPrivilegedBenchmark.java36 public String run() {
47 public String run() {
68 public String run() { method in class:DoPrivilegedBenchmark.ReusableAction
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DLoadLocaleProviderTestHelper.java39 public void run() { method in class:LoadLocaleProviderTestHelper
/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadLocalTest.java68 public void run() { method in class:ThreadLocalTest.ITLThread
/libcore/luni/src/test/java/libcore/java/io/
H A DOldAndroidPipedStreamTest.java28 public final void run() { method in class:OldAndroidPipedStreamTest.TestThread
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldAndroidMonitorTest.java122 public void run() { method in class:OldAndroidMonitorTest.Waiter
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetTest.java42 public void run() { method in class:CharsetTest.CheckerThread
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldLogRecordTest.java78 public void run() { method in class:OldLogRecordTest.MockThread
/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/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/ojluni/src/main/java/java/util/
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/sun/net/www/http/
H A DKeepAliveStreamCleaner.java66 public Integer run() {
74 public Integer run() {
91 public void run() method in class:KeepAliveStreamCleaner
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DInetAddressThreadTest.java65 public void run() { method in class:InetAddressThreadTest.threadsafeTestThread
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DConcurrentModificationExceptionTest.java41 public void run() { method in class:ConcurrentModificationExceptionTest.CollectionModifier

Completed in 1425 milliseconds

12345