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

1234567891011>>

/openjdk10/jdk/test/javax/script/
H A DTest4.js1 function run() { function
2 print("global run method");
6 run: function() { print("object run method"); }
/openjdk10/jdk/test/tools/jlink/bindservices/src/m3/p3/
H A DS.java27 void run(); method in interface:S
H A DMyProvider.java27 public void run() { method in class:MyProvider
H A DImpl.java27 public void run() { method in class:Impl
/openjdk10/jdk/test/tools/jlink/bindservices/src/m2/p2/
H A DT.java27 void run(); method in interface:T
/openjdk10/langtools/test/tools/jdeps/c/
H A DI.java27 void run(); method in interface:I
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/
H A Digv.sh22 ant run >.igv.log 2>&1
/openjdk10/nashorn/test/script/basic/
H A DNASHORN-34.js28 * @run
32 run: function() {
33 print("Inside run function");
37 // now call the 'run' method on the extended class
38 task.run();
43 run: function() {
44 print("This is TimerTask.run");
48 task2.run();
H A Dtosource.js28 * @run
37 var obj = { run: function() { print("run"); } };
38 print(obj.run.toSource());
/openjdk10/hotspot/test/compiler/exceptions/
H A DTestRecursiveReplacedException.java29 * @run main/othervm -Xcomp -XX:+TieredCompilation -XX:TieredStopAtLevel=2 -Xss512K
30 * -XX:CompileCommand=compileonly,compiler.exceptions.TestRecursiveReplacedException::run
39 new TestRecursiveReplacedException().run();
42 public void run() { method in class:TestRecursiveReplacedException
44 run();
/openjdk10/hotspot/test/compiler/runtime/
H A DStackOverflowBug.java30 * @run main/othervm -XX:CompileThreshold=100 -Xbatch -Xss512k
38 public static int run() { method in class:StackOverflowBug
41 return run();
63 run();
68 public static int run();
70 0: invokestatic #2 // Method run:()I
/openjdk10/jdk/src/java.base/share/classes/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
/openjdk10/jdk/test/java/lang/reflect/Proxy/src/m1/p/one/
H A DI.java27 void run(); method in interface:I
/openjdk10/jdk/test/java/lang/ClassLoader/platformClassLoader/jdk.zipfs/java/fake/
H A DFake.java27 public void run() {} method in class:Fake
/openjdk10/langtools/test/tools/javac/api/mod/api/pkg/
H A DApi.java26 public void run() {} method in class:Api
/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaExpr13.java38 { ir = () -> { ir.run(); }; }
39 static { sr = () -> { sr.run(); }; }
42 sr = () -> { sr.run(); };
46 ir = () -> { ir.run(); };
/openjdk10/langtools/test/tools/javac/processing/6994946/
H A DSemanticErrorTest.java14 public void run() { } method in class:SemanticErrorTest
/openjdk10/langtools/test/tools/javac/diags/examples/
H A DAnonClassImplInterfaceNoArgs.java28 public void run() { }
/openjdk10/jdk/test/sun/security/tools/keytool/
H A DCloseFile.java31 * @run main CloseFile
43 run("-keystore f0 -storepass changeit -keypass changeit -genkeypair -dname CN=Haha");
44 run("-keystore f0 -storepass changeit -keypass changeit -certreq -file f2");
46 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
48 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
49 run("-keystore f0 -storepass changeit -keypass changeit -delete -alias mykey");
50 run("-keystore f0 -storepass changeit -keypass changeit -importcert -file f2 -noprompt");
52 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
53 run("-printcert -file f2");
56 run("
62 static void run(String s) throws Exception { method in class:CloseFile
[all...]
/openjdk10/langtools/test/tools/jdeps/mrjar/test/
H A DMain.java27 public void run() { method in class:Main
33 (new Main()).run();
/openjdk10/langtools/test/tools/javac/lambda/8168480/
H A DT8168480.java17 public void run() {
23 }.run());
36 public void run() {
42 }.run();
57 public void run() {
76 public void run() {
96 public void run() {
112 public void run() {
/openjdk10/nashorn/test/script/error/
H A Dobject_literal_in_new_nse.js32 run: function() { print("hello"); }
/openjdk10/jdk/test/tools/launcher/
H A DInfoStreams.java28 * @run main InfoStreams
38 public static OutputAnalyzer run(String ... opts) throws Exception { method in class:InfoStreams
55 run("-help").stderrShouldMatch(USAGE).stdoutShouldNotMatch(".");
56 run("--help").stdoutShouldMatch(USAGE).stderrShouldNotMatch(".");
58 run("-version").stderrShouldMatch(VERSION_ERR).stdoutShouldNotMatch(".");
59 run("--version").stdoutShouldMatch(VERSION_OUT).stderrShouldNotMatch(".");
61 run("-showversion", "--dry-run", "-cp", classPath, "InfoStreams")
64 run("--show-version", "--dry-run", "
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DPrivilegedExceptionAction.java57 * document the exceptions that its run method can throw.
62 T run() throws Exception; method in interface:PrivilegedExceptionAction
H A DPrivilegedAction.java56 T run(); method in interface:PrivilegedAction

Completed in 215 milliseconds

1234567891011>>