Searched refs:compile (Results 1 - 25 of 246) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/script/
H A DCompilable.java32 * The optional interface implemented by ScriptEngines whose methods compile scripts
53 public CompiledScript compile(String script) throws method in interface:Compilable
59 * <code>compile(String)</code> other than the way in which the source is
70 public CompiledScript compile(Reader script) throws method in interface:Compilable
/openjdk7/corba/make/org/omg/sources/
H A DMakefile54 build: poa.compile iop.compile corbax.compile messaging.compile pi.compile dynany.compile ns.compile tr.compile
57 build: poa.compile iop.compile corba
[all...]
/openjdk7/langtools/test/tools/javac/synthesize/
H A DMain.java43 // compile with standard bootclasspath
44 compile(true, "Test.java");
46 // compile with various missing system classes
71 compile(false, files);
79 compile(false, files);
86 void compile(boolean stdBootClassPath, String... files) { method in class:Main
87 compile(stdBootClassPath, Arrays.asList(files));
90 void compile(boolean stdBootClassPath, List<String> files) { method in class:Main
109 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]),
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java176 Matcher matcher = Pattern.compile(p).matcher(s);
183 Pattern pattern = Pattern.compile(propertyPattern);
192 Pattern pattern = Pattern.compile(propertyPattern);
202 Pattern pattern = Pattern.compile(p, flag);
271 check(new Runnable() { public void run() { Pattern.compile(null); }});
275 check(new Runnable() { public void run() { Pattern.compile("xyz").split(null);}});
276 check(new Runnable() { public void run() { Pattern.compile("xyz").matcher(null);}});
278 final Matcher m = Pattern.compile("xyz").matcher("xyz");
294 Pattern pattern = Pattern.compile("[\\ud834\\udd21-\\ud834\\udd24]");
304 Pattern pattern = Pattern.compile("squi
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DMain.java37 * {@link #compile(java.lang.String[])}
38 * {@link #compile(java.lang.String[],java.io.PrintWriter)},
61 System.exit(compile(args));
73 public static int compile(String[] args) { method in class:Main
76 return compiler.compile(args);
91 public static int compile(String[] args, PrintWriter out) { method in class:Main
94 return compiler.compile(args);
/openjdk7/langtools/test/tools/javac/6403424/
H A DT6403424.java41 // first, compile A to the TMP directory
43 compile("-d", TMP.getPath(), A_java.getPath());
45 // now compile B, which references A,
48 compile("-classpath", TMP.getPath(),
56 private static void compile(String... args) { method in class:T6403424
57 System.err.println("compile: " + Arrays.asList(args));
/openjdk7/langtools/test/tools/javac/file/zip/
H A DT6865530.java28 * @compile -XDignore.symbol.file T6865530.java
47 Utils.compile("-doe", "-verbose", fooJava.getName());
57 if (!Utils.compile("-doe", "-verbose", "-cp", badFile.getAbsolutePath(), "Bar.java")) {
58 throw new RuntimeException("test fails javac did not compile");
/openjdk7/langtools/test/tools/javac/6668794/badClass/
H A DTest.java44 // compile q.A then move it to p.A
45 compile("A.java");
51 // compile B against p.A
52 String[] out = compile("B.java");
67 String[] compile(String file) { method in class:Test
75 System.err.println("compile: " + Arrays.asList(options));
78 int rc = com.sun.tools.javac.Main.compile(options, out);
/openjdk7/langtools/test/tools/javac/
H A DT6595666.java49 compile(1, "-d", ".", "-Xlint", "-Werror", srcFile.getPath());
53 compile(0, "-d", ".", "-Xlint", srcFile.getPath());
58 private static void compile(int rc, String... args) throws Exception { method in class:T6595666
59 System.err.println("compile: " + Arrays.asList(args));
62 int rc2 = com.sun.tools.javac.Main.compile(args, pw);
H A DT6999210.java44 compile("-d", classesDir.getPath(), c_java.getPath());
50 String out1 = compile(
58 String out2 = compile(
67 String out3 = compile(
80 String compile(String... args) throws Exception { method in class:T6999210
81 System.err.println("compile: " + Arrays.asList(args));
84 int rc = com.sun.tools.javac.Main.compile(args, pw);
H A DT6534287.java35 com.sun.tools.javac.Main.compile(new String[] { "" }, pw);
H A DT6873845.java18 String out = compile(Arrays.asList("-XDrawDiagnostics", "-X"));
51 compile(args); // to verify resource strings exist
53 String out = compile(args);
58 String compile(List<String> args) throws Exception{ method in class:T6873845
61 System.out.println("compile: " + args);
62 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
/openjdk7/langtools/test/tools/javap/
H A DT7004698.java43 compile("-Xjcov", "-d", classesDir.getPath(), srcFile.getPath());
48 Pattern attrBody = Pattern.compile("[0-9a-f, ]+//[-0-9a-z:, ]+");
49 Pattern endOfAttr = Pattern.compile("(^$|[A-Z][A-Za-z0-9_]+:.*|})");
74 void compile(String... args) throws Exception { method in class:T7004698
77 int rc = com.sun.tools.javac.Main.compile(args, pw);
/openjdk7/hotspot/test/testlibrary/com/oracle/java/testlibrary/
H A DOutputAnalyzer.java154 Matcher stdoutMatcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
155 Matcher stderrMatcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
171 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
186 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
201 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
206 matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
221 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
236 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
/openjdk7/jdk/test/javax/script/
H A DRhinoExceptionTest.java60 CompiledScript scr = ((Compilable)engine).compile("throw new Error(msg);");
68 CompiledScript scr = ((Compilable)engine).compile("throw msg;");
H A DTest6.java47 CompiledScript scr = ((Compilable)engine).compile(reader);
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DOutputAnalyzer.java184 Matcher stdoutMatcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
185 Matcher stderrMatcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
201 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
216 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
231 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
236 matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
251 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stdout);
266 Matcher matcher = Pattern.compile(pattern, Pattern.MULTILINE).matcher(stderr);
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.hpp132 void print_inlining(Compile* compile);
133 void begin_method(Compile* compile);
135 void print_method(Compile* compile, const char *name, int level=1, bool clear_nodes = false);
136 void print(Compile* compile, const char *name, Node *root, int level=1, bool clear_nodes = false);
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTest6397609.java38 loader.compile("Editor",
/openjdk7/langtools/test/tools/javac/options/
H A DT7022337.java50 String out = compile(
66 String compile(String... args) throws Exception { method in class:T7022337
69 int rc = com.sun.tools.javac.Main.compile(args, pw);
/openjdk7/langtools/test/tools/javac/processing/6350124/
H A DT6350124.java45 // compile the annotation processor
46 compile("-cp", classpath,
49 // compile the test program, invoking the anotation processor
50 compile("-cp", classpath,
86 // note: jtreg @compile does not allow -d to be specified
87 static void compile(String... args) { method in class:T6350124
88 StringBuffer sb = new StringBuffer("compile:");
/openjdk7/langtools/test/tools/javac/6917288/
H A DGraphicalInstallerTest.java43 int rc = compile(opts, new File(testSrc, "GraphicalInstaller.java"));
64 int compile(List<String> opts, File... files) { method in class:GraphicalInstallerTest
71 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
/openjdk7/langtools/test/tools/javac/util/
H A DT6597678.java56 compile(
62 void compile(String... args) throws Exception { method in class:T6597678
65 int rc = com.sun.tools.javac.Main.compile(args, pw);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DNameFilter.java40 includePattern = Pattern.compile(pattern);
/openjdk7/langtools/test/tools/javac/6627362/
H A DT6627362.java51 // compile and disassemble E.java, check for reference to Object.clone()
55 compile(jcArgs);
66 // compile and disassemble E.java, using modified Object.java,
72 compile(jcArgs);
82 void compile(String... args) { method in class:T6627362
83 int rc = com.sun.tools.javac.Main.compile(args);

Completed in 81 milliseconds

12345678910