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

123

/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
/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
/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
/libcore/dalvik/src/main/java/dalvik/system/
H A DNativeStart.java38 private static native void run(); method in class:NativeStart
/libcore/junit/src/main/java/junit/framework/
H A DTest.java4 * A <em>Test</em> can be run and collect its results.
10 * Counts the number of test cases that will be run by this test.
16 public abstract void run(TestResult result); method in interface:Test
H A DTestCase.java6 * A test case defines the fixture to run multiple tests. To define a test case<br>
35 * Once the methods are defined you can run them. The framework supports
36 * both a static type safe and more dynamic way to run a test.
45 * test.run();
50 * to be run.
53 * test.run();
55 * The tests to be run can be collected into a TestSuite. JUnit provides
56 * different <i>test runners</i> which can run a test suite and collect the results.
58 * point to get a test to run or it will extract the suite automatically.
90 * Counts the number of test cases executed by run(TestResul
109 public TestResult run() { method in class:TestCase
117 public void run(TestResult result) { method in class:TestCase
[all...]
/libcore/junit/src/main/java/junit/extensions/
H A DRepeatedTest.java21 public void run(TestResult result) { method in class:RepeatedTest
25 super.run(result);
H A DTestSetup.java8 * to set up additional state once before the tests are run.
15 public void run(final TestResult result) { method in class:TestSetup
H A DActiveTestSuite.java29 public void run(TestResult result) { method in class:ActiveTestSuite
31 super.run(result);
37 public void run() {
41 test.run(result);
H A DTestDecorator.java9 * is run.
19 * The basic run behavior.
22 fTest.run(result);
27 public void run(TestResult result) { method in class:TestDecorator
/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/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/main/java/org/apache/harmony/luni/util/
H A DDeleteOnExit.java72 public void run() { method in class:DeleteOnExit
/libcore/luni/src/test/java/libcore/java/io/
H A DOldAndroidPipedStreamTest.java28 public final void run() { method in class:OldAndroidPipedStreamTest.TestThread
H A DFileInputStreamTest.java42 public void run() { method in class:FileInputStreamTest.DataFeeder
/libcore/luni/src/test/java/libcore/java/net/
H A DConcurrentCloseTest.java92 public void run() {
116 public void run() {
135 public void run() {
180 public void run() {
219 public void run() { method in class:ConcurrentCloseTest.Killer
H A DOldAndroidDatagramTest.java52 public void run() { method in class:OldAndroidDatagramTest.Reflector
/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/api/java/util/
H A DConcurrentModificationExceptionTest.java41 public void run() { method in class:ConcurrentModificationExceptionTest.CollectionModifier
H A DTimerTaskTest.java39 public void run() { method in class:TimerTaskTest.TimerTestTask
90 assertTrue("TimerTask should not have run yet", testTask.cancel());
93 // Ensure cancelling a task which has already run returns true
104 "TimerTask.cancel() should return false if task has run",
111 // Ensure cancelling a repeated execution task which has never run
115 t.schedule(testTask, 500, 500); // should never run
117 "TimerTask.cancel() should return true if sheduled for repeated execution even if not run",
121 // Ensure cancelling a repeated execution task which HAS run returns
133 "TimerTask.cancel() should return true if sheduled for repeated execution and run",
140 t.schedule(testTask, 5000); // Should never run
[all...]
/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/test/java/tests/api/java/lang/ref/
H A DReferenceQueueTest.java41 public void run() { method in class:ReferenceQueueTest.ChildThread
128 public void run() {
200 public void run() {
/libcore/luni/src/test/java/tests/api/javax/security/auth/
H A DSubjectTest.java115 public Object run() throws PrivilegedActionException {
187 public Object run() throws PrivilegedActionException {
240 public Object run() { method in class:myPrivilegedAction
247 public Object run() { method in class:myPrivilegedExceptionAction

Completed in 296 milliseconds

123