Searched refs:compile (Results 26 - 50 of 246) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javac/
H A DT6405099.java57 int rc = com.sun.tools.javac.Main.compile(args, pw);
H A DT6358168.java79 compiler.compile(List.of(f));
81 compiler.compile(List.of(f));
82 throw new Error("Error: AssertionError not thrown after second call of compile");
105 compiler2.compile(List.of(f));
106 throw new Error("Error: AssertionError not thrown after second call of compile");
H A DT6942649.java47 int rc = com.sun.tools.javac.Main.compile(new String[] { opt }, pw);
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java59 compile(
68 compile(
80 void compile(String... args) throws Exception { method in class:T7018098
83 int rc = com.sun.tools.javac.Main.compile(args, pw);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DStringCutter.java53 Pattern p = Pattern.compile(regexp);
69 Pattern p = Pattern.compile(regexp);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java145 private Compilation compile; field in class:LogParser
282 compile.getPhases().add(p);
284 compile = new Compilation(Integer.parseInt(search(atts, "compile_id", "-1")));
285 compile.setStart(Double.parseDouble(search(atts, "stamp")));
286 compile.setICount(search(atts, "count", "0"));
287 compile.setBCount(search(atts, "backedge_count", "0"));
302 compile.setOsr(true);
303 compile.setOsr_bci(Integer.parseInt(search(atts, "osr_bci")));
305 compile.setSpecial("--- adapter " + method);
307 compile
[all...]
H A DLogCleanupReader.java58 static final private Matcher pattern = Pattern.compile(".+ compile_id='[0-9]+'.*( compile_id='[0-9]+)").matcher("");
59 static final private Matcher pattern2 = Pattern.compile("' (C[12]) compile_id=").matcher("");
60 static final private Matcher pattern3 = Pattern.compile("'(destroy_vm)/").matcher("");
/openjdk7/jdk/make/tools/src/build/tools/spp/
H A DSpp.java104 Matcher ifkey = Pattern.compile("^#if\\[(!)?" + KEY + "\\]").matcher("");
105 Matcher elsekey = Pattern.compile("^#else\\[(!)?" + KEY + "\\]").matcher("");
106 Matcher endkey = Pattern.compile("^#end\\[(!)?" + KEY + "\\]").matcher("");
107 Matcher vardef = Pattern.compile("\\{#if\\[(!)?" + KEY + "\\]\\?" + TEXT + "(:"+ TEXT + ")?\\}|\\$" + VAR + "\\$").matcher("");
108 Matcher vardef2 = Pattern.compile("\\$" + VAR + "\\$").matcher("");
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalVmManager.java82 userPattern = Pattern.compile(PerfDataFile.userDirNamePattern);
95 filePattern = Pattern.compile(PerfDataFile.fileNamePattern);
105 tmpFilePattern = Pattern.compile(PerfDataFile.tmpFileNamePattern);
/openjdk7/langtools/test/tools/javac/file/zip/
H A DUtils.java45 public static boolean compile(String... args) { method in class:Utils
46 return javac.compile(args) == 0;
52 if (!compile(javaFile.getName())) {
53 throw new RuntimeException("compile failed unexpectedly");
/openjdk7/langtools/test/tools/javac/processing/options/
H A DTestImplicitNone.java62 compile(opts, files);
70 void compile(List<String> opts, List<File> files) throws Exception { method in class:TestImplicitNone
78 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPath.java189 * <strong>at compile time</strong> will be used to resolve them.</p>
200 public XPathExpression compile(String expression) method in interface:XPath
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dhotspot_calls_tree.d85 hotspot$target:::method-compile-begin,
98 hotspot$target:::method-compile-end,
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParamTagImpl.java41 private static Pattern typeParamRE = Pattern.compile("<([^<>]+)>");
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DStyleAssociation.java86 _pattern = Pattern.compile(text);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DMacOSXFileSystem.java49 return Pattern.compile(expr, Pattern.CANON_EQ) ;
/openjdk7/langtools/test/tools/javac/annotations/6550655/
H A DT6550655.java62 compile(null, new JavaSource("Test.java", testSource));
64 compile(new DiagnosticChecker(), testKind.source);
67 void compile(DiagnosticChecker dc, JavaSource... sources) { method in class:T6550655
80 compile(null, new JavaSource("Replace.java", newSource));
/openjdk7/langtools/test/tools/javac/classreader/
H A DT7031108.java64 /* Dummy source file to compile while running anno processor. */
73 // step 1: compile test classes
76 compile(comp, fm, null, null, pC);
82 compile(comp, fm, null, getClass().getName(), dummy);
88 compile(comp, fm, dc, getClass().getName(), dummy);
107 void compile(JavaCompiler comp, JavaFileManager fm, method in class:T7031108
110 System.err.println("compile processor:" + processor + ", files:" + Arrays.asList(files));
/openjdk7/langtools/test/tools/javadoc/6176978/
H A DT6176978.java50 int rc = com.sun.tools.javac.Main.compile(javac_args);
/openjdk7/hotspot/test/runtime/NMT/
H A DSummarySanityCheck.java70 Pattern mtTypePattern = Pattern.compile("-\\s+(?<typename>[\\w\\s]+)\\(reserved=(?<reserved>\\d+)KB,\\scommitted=(?<committed>\\d+)KB\\)");
72 Pattern totalMemoryPattern = Pattern.compile("Total\\:\\s\\sreserved=(?<reserved>\\d+)KB,\\s\\scommitted=(?<committed>\\d+)KB");
/openjdk7/corba/make/common/
H A DRules.gmk166 # Construct list of java sources we need to compile
177 classes : $(CLASSES_INIT) .delete.classlist .compile.classlist
183 .compile.classlist : $(JAVA_SOURCE_LIST)
227 .delete.classlist classes .compile.classlist classes.clean \
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXSLTC.java231 * Initializes the compiler to compile a new stylesheet
311 public boolean compile(URL url) { method in class:XSLTC
317 return compile(input, _className);
330 public boolean compile(URL url, String name) { method in class:XSLTC
336 return compile(input, name);
350 public boolean compile(InputStream stream, String name) { method in class:XSLTC
353 return compile(input, name);
362 public boolean compile(InputSource input, String name) { method in class:XSLTC
364 // Reset globals in case we're called by compile(Vector v);
441 public boolean compile(Vecto method in class:XSLTC
491 public byte[][] compile(String name, InputSource input, int outputType) { method in class:XSLTC
506 public byte[][] compile(String name, InputSource input) { method in class:XSLTC
[all...]
/openjdk7/langtools/test/tools/javac/processing/
H A DT6920317.java101 compile(tmpClasses, new String[] { }, test_java);
112 compile(cp_old, new String[] { "-classpath", tmpClasses.getPath() },
123 compile(cp_new, new String[] { "-classpath", tmpClasses.getPath() },
132 compile(cp_gen, new String[] { "-classpath", tmpClasses.getPath() },
246 // compile the files with the options that have been built up
247 compile(opts, files);
302 void compile(File dir, String[] opts, File src) throws Exception { method in class:T6920317
307 compile(opts2, Collections.singletonList(src));
311 void compile(List<String> opts, List<File> files) throws Exception { method in class:T6920317
319 int rc = com.sun.tools.javac.Main.compile(arg
[all...]
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java43 public Class<?> compile(String name, String content) { method in class:MemoryClassLoader
44 compile(new Source(name, content));
53 public void compile(Source... sources) { method in class:MemoryClassLoader
/openjdk7/langtools/test/tools/javac/6400872/
H A DT6400872.java48 // compile A.java and B.java
49 compile(testClasses, null, new File(testSrc, "A.java"), new File(testSrc, "B.java"));
54 compile(new File("."), iterable(new File("A.jar")), new File(testSrc, "C.java"));
57 static void compile(File classOutDir, Iterable<File> classPath, File... files) method in class:T6400872
59 System.err.println("compile...");

Completed in 65 milliseconds

12345678910