Searched refs:compile (Results 201 - 225 of 246) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperties.java166 valuePattern = Pattern.compile(value);
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessImpl.java154 Pattern.compile("[^\\s\"]+|\"[^\"]*\"");
/openjdk7/jdk/test/java/nio/Buffer/
H A DSwapMicroBenchmark.java135 return val == null ? null : Pattern.compile(val);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java260 return com.sun.tools.javac.Main.compile(arguments, new PrintWriter(err, true));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/sym/
H A DCreateSymbols.java490 com.sun.tools.javac.Main.compile(args);
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java116 Matcher matcher = Pattern.compile(regex).matcher(s);
/openjdk7/jdk/test/sun/management/jmxremote/startstop/
H A DJMXStartStopTest.sh27 # @run shell JMXStartStopTest.sh --jtreg --no-compile
59 echo "ERROR: Can't compile"
562 --no-compile) _compile=no ;;
/openjdk7/langtools/test/tools/javac/processing/model/util/elements/doccomments/
H A DTestDocComments.java119 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java126 * but with different compile policies, you can control the order in which
523 * initialized by `compile'.
783 /** Track when the JavaCompiler has been used to compile something. */
788 public void compile(List<JavaFileObject> sourceFileObject) method in class:JavaCompiler
790 compile(sourceFileObject, List.<String>nil(), null);
794 * Main method: compile a list of files, return all compiled classes
801 public void compile(List<JavaFileObject> sourceFileObjects, method in class:JavaCompiler
874 Assert.error("unknown compile policy");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacProcessingEnvironment.java149 * Source level of the compile.
545 * equal to the source version of the compile.
1196 * was raised on either of the last *two* rounds, the compile
1446 private static final Pattern allMatches = Pattern.compile(".*");
1447 public static final Pattern noMatches = Pattern.compile("(\\P{all})+");
1507 return Pattern.compile(s_prime);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathImpl.java380 public XPathExpression compile(String expression) method in class:XPathImpl
/openjdk7/
H A DMakefile386 PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
/openjdk7/jdk/src/share/classes/java/util/
H A DCurrency.java241 Pattern.compile("([A-Z]{3})\\s*,\\s*(\\d{3})\\s*,\\s*([0-3])");
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DLdapLoginModule.java336 Pattern.compile("\\{USERNAME\\}");
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUnicodeSpec.java746 static final Pattern tokenSeparator = Pattern.compile(";");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportTool.java454 return JavaCompilerHelper.compile(args, out, receiver);
456 //there are no files to compile, so return true?
/openjdk7/jdk/test/com/sun/jdi/
H A DShellScaffold.sh46 # compileOptions=<string> compile options for at least the first compile,
48 # compileOptions2=<string> Options for the 2nd, ..., compile. compileOptions1
49 # is used if this is not set. To use no compile
385 if [ "$compile" = 0 ] ; then
406 dofail "First compile failed"
440 dofail "Second compile failed"
469 dofail "Third compile failed"
495 dofail "fourth compile failed"
/openjdk7/jdk/test/java/io/File/
H A DGetXSpace.java65 private static Pattern dfPattern = Pattern.compile(dfFormat);
/openjdk7/jdk/test/java/util/Formatter/
H A DBasicDateTime.java175 testDateTime(Pattern.compile("t").matcher(fs).replaceFirst("T"),
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java377 Pattern args1 = Pattern.compile("^(0x[0-9a-f]+)(/([0-9]*)([a-z]*))?$");
378 Pattern args2 = Pattern.compile("^(0x[0-9a-f]+),(0x[0-9a-f]+)(/[a-z]*)?$");
717 // dumps the InlineTree of a C2 compile
1554 static Pattern historyPattern = Pattern.compile("((!\\*)|(!\\$)|(!!-?)|(!-?[0-9][0-9]*)|(![a-zA-Z][^ ]*))");
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java35 * To compile a regular expression (RE), you can simply construct an RE
232 * for reasons of efficiency. In fact, if you want to pre-compile one
255 * re-use it to compile each expression. Similarly, you can change the
419 * @param pattern The regular expression pattern to compile.
434 * @param pattern The regular expression pattern to compile.
442 this(new RECompiler().compile(pattern));
/openjdk7/hotspot/make/
H A DMakefile561 BOOTDIR.desc = JDK used to compile agent java source and test with
/openjdk7/jdk/test/tools/launcher/
H A DArrrghs.java29 * @compile -XDignore.symbol.file Arrrghs.java
199 static final Pattern ArgPattern = Pattern.compile("\\s*argv\\[[0-9]*\\].*=.*");
428 // test if javac (the command) can compile *.java
/openjdk7/jdk/test/tools/pack200/
H A DUtils.java301 if (com.sun.tools.javac.Main.compile(javacCmds) != 0) {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java651 private final Pattern pattern = Pattern.compile("[sg]et\\p{Upper}.*");

Completed in 68 milliseconds

12345678910