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

1234567891011>>

/openjdk7/jdk/test/javax/script/
H A DTest4.js1 function run() { function
2 print("global run method");
6 run: function() { print("object run method"); }
/openjdk7/hotspot/test/compiler/6865265/
H A DStackOverflowBug.java31 * @run main/othervm -XX:CompileThreshold=100 -Xbatch -Xss248k StackOverflowBug
37 public static int run() { method in class:StackOverflowBug
40 return run();
63 run();
68 public static int run();
70 0: invokestatic #2 // Method run:()I
/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioSecurityAction.java29 Object run(); method in interface:AudioSecurityAction
H A DAudioSecurityExceptionAction.java29 Object run() throws Exception; method in interface:AudioSecurityExceptionAction
/openjdk7/jdk/src/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
/openjdk7/jdk/test/sun/tools/jhat/
H A DHatHeapDump1Test.java31 * @run main HatHeapDump1Test HelloWorld
37 HatRun run;
40 run = new HatRun("heap=dump", "");
41 run.runit(args[0]);
44 if (run.output_contains("ERROR")) {
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DAnonClassImplInterfaceNoArgs.java28 public void run() { }
H A DAnonClassImplInterfaceNoTypeArgs.java28 public void run() { }
H A DCantResolveArgs.java32 public void run() { }
/openjdk7/langtools/test/tools/javac/processing/6994946/
H A DSemanticErrorTest.java12 public void run() { } method in class:SemanticErrorTest
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DCloseFile.java41 run("-keystore f0 -storepass changeit -keypass changeit -genkeypair -dname CN=Haha");
42 run("-keystore f0 -storepass changeit -keypass changeit -certreq -file f2");
44 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
46 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
47 run("-keystore f0 -storepass changeit -keypass changeit -delete -alias mykey");
48 run("-keystore f0 -storepass changeit -keypass changeit -importcert -file f2 -noprompt");
50 run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
51 run("-printcert -file f2");
54 run("-keystore f0 -storepass changeit -keypass changeit -genkeypair -dname CN=Haha");
55 run("
60 static void run(String s) throws Exception { method in class:CloseFile
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DPrivilegedAction.java55 T run(); method in interface:PrivilegedAction
H A DPrivilegedExceptionAction.java56 * document the exceptions that its run method can throw.
61 T run() throws Exception; method in interface:PrivilegedExceptionAction
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DBenchmark.java35 * Run the benchmark. Return length of time (in milliseconds) that run
38 long run(String[] args) throws Exception; method in interface:Benchmark
/openjdk7/langtools/test/tools/javac/nested/5009484/
H A DX.java42 void run() {
44 void run() {
48 }.run();
50 }.run();
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/
H A DTestMissingClass.java31 * @run main TestMissingClass
36 new TestMissingClass().run();
H A DTestMissingGenericClass1.java32 * @run main TestMissingGenericClass1
37 new TestMissingGenericClass1().run();
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DTask.java33 Object run(); method in interface:Task
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DAction.java31 byte[] run(Context s, byte[] input) throws Exception; method in interface:Action
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiRun.java45 * at the same embedding level, each such sequence is called a <quote>run</quote>.
47 * <p>A BidiRun represents such a run by storing its essential properties,
48 * but does not duplicate the characters which form the run.
50 * <p>The &quot;limit&quot; of the run is the position just after the
60 int start; /* first logical position of the run */
61 int limit; /* last visual position of the run +1 */
62 int insertRemove; /* if >0, flags for inserting LRM/RLM before/after run,
63 if <0, count of bidi controls within run */
69 * Note that members start and limit of a run instance have different
70 * meanings depending whether the run i
98 copyFrom(BidiRun run) argument
[all...]
/openjdk7/langtools/test/tools/javac/missingSuperRecovery/
H A Dimpl.class ... =%3Cinit%3E" <init> () public void run
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DRunnableFuture.java40 * the <tt>run</tt> method causes completion of the <tt>Future</tt>
53 void run(); method in interface:RunnableFuture
/openjdk7/jdk/src/share/classes/com/sun/java/browser/dom/
H A DDOMAction.java34 * run method is called in the DOM access dispatch thread.
41 public Object run(DOMAccessor accessor); method in interface:DOMAction
/openjdk7/jdk/test/java/beans/Statement/
H A DTest6788531.java35 new Statement(new Private(), "run", null).execute();
36 new Statement(new PrivateGeneric(), "run", new Object[] {"generic"}).execute();
40 public void run() { method in class:Test6788531.Public
46 public void run() { method in class:Test6788531.Private
52 public void run(T object) { method in class:Test6788531.PublicGeneric
58 public void run(String string) { method in class:Test6788531.PrivateGeneric
/openjdk7/jdk/test/java/io/Serializable/superclassDataLoss/
H A DB.java35 public void run() { method in class:B

Completed in 185 milliseconds

1234567891011>>