Searched defs:Main (Results 76 - 80 of 80) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/
H A DMain.java52 * A Main instance contains the stream to output error messages and
56 * invocation) is executed by invoking the "compile" method of a Main
72 * oldjavac-based rmic implementation is sun.rmi.rmic.Main.
76 public class Main { class
120 Main rmic = new Main(System.err, "rmic");
125 * Creates a Main instance that writes output to the specified
128 public Main(OutputStream out, String program) { method in class:Main
180 * Prints the specified string to the output stream of this Main
188 * Prints an error message to the output stream of this Main
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A DMain.java37 public class Main { class
477 ClassLoader parent = Main.class.getClassLoader();
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java70 public class Main { class
431 Main.this.help();
437 Main.this.xhelp();
606 public Main(String name) { method in class:Main
613 public Main(String name, PrintWriter out) { method in class:Main
1096 returnCode = com.sun.tools.javac.Main.compile(newArgs);
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java47 class Main { class
125 public Main(PrintStream out, PrintStream err, String program) { method in class:Main
686 // overrides any existing Main-Class attribute
1173 * Main routine to start program.
1176 Main jartool = new Main(System.out, System.err, "jar");
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp60 enum { Normal=0, Pre=1, Main=2, Post=3, PreMainPostFlagsMask=3, enumerator in enum:LoopNode::__anon334
142 // the Main CountedLoop. Used to assert that we understand the graph shape.
204 int is_main_loop () const { return (_loop_flags&PreMainPostFlagsMask) == Main; }
213 void set_main_loop ( ) { assert(is_normal_loop(),""); _loop_flags |= Main; }

Completed in 44 milliseconds

1234