Searched refs:compile (Results 126 - 150 of 246) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javap/
H A DT4777949.java77 int rc = com.sun.tools.javac.Main.compile(new String[] { "-d", ".", f.getPath() });
H A DT6716452.java100 int rc = com.sun.tools.javac.Main.compile(new String[] { "-g", f.getPath() });
H A DT6879371.java80 int rc = com.sun.tools.javac.Main.compile(
/openjdk7/jdk/test/sun/security/krb5/
H A DIPv6.java103 Pattern r = Pattern.compile(".*KrbKdcReq send: kdc=(.*) UDP:(\\d+),.*");
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTestSeq.java216 public InstructionHandle compile(ClassGenerator classGen, method in class:TestSeq
247 ilist = pattern.compile(classGen, methodGen);
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java99 Pattern.compile("[^DT]*");
102 Pattern.compile("[^YM]*[DT].*");
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DUtils.java62 final Pattern matchPattern = Pattern.compile(matchRegex, Pattern.CASE_INSENSITIVE);
63 final Pattern prunePattern = pruneRegex == null ? null : Pattern.compile(pruneRegex, Pattern.CASE_INSENSITIVE);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/relaxng/
H A DRELAXNGCompiler.java65 * Schema to compile.
108 compiler.compile();
134 private void compile() { method in class:RELAXNGCompiler
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDebug.java227 Pattern pattern = Pattern.compile(reg);
251 pattern = Pattern.compile(reg);
/openjdk7/jdk/src/share/sample/nio/file/
H A DChmod.java115 public static Changer compile(String exprs) { method in class:Chmod
338 // compile the symbolic mode expressions
339 Changer changer = compile(args[argi++]);
/openjdk7/langtools/test/tools/javac/file/zip/
H A DT6836682.java28 * @compile -XDignore.symbol.file T6836682.java Utils.java
190 if (!Utils.compile("-doe", "-verbose", "-cp",
218 if (!Utils.compile("-doe", "-verbose", "-cp",
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp157 Compile* compile = Compile::current(); local
158 compile->set_type_last_size(x);
159 void *temp = compile->type_arena()->Amalloc_D(x);
160 compile->set_type_hwm(temp);
164 Compile* compile = Compile::current(); local
165 compile->type_arena()->Afree(ptr,compile->type_last_size());
169 static void Initialize(Compile* compile);
172 static void Initialize_shared(Compile* compile);
/openjdk7/langtools/test/tools/javac/6889255/
H A DT6889255.java361 compile(outDir, opts);
446 void compile(File outDir, String... opts) throws Exception { method in class:T6889255
456 int rc = com.sun.tools.javac.Main.compile(args.toArray(new String[args.size()]), pw);
/openjdk7/jdk/test/sun/misc/JarIndex/metaInfFilenames/
H A DBasic.java82 * Note: Needs jdk/lib/tools.jar in the classpath to compile and run.
121 /* compile the source that will be used to generate the jars */
125 compile("-d" , testClassesDir,
155 static void compile(String... args) { method in class:Basic
158 if (compiler.compile(args) != 0) {
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/
H A DMain.java56 * invocation) is executed by invoking the "compile" method of a Main
121 System.exit(rmic.compile(args) ? 0 : 1);
143 public boolean compile(String[] args) { method in class:Main
606 * Runs the javac tool to compile the specified source files,
649 // add source files to compile
655 int status = com.sun.tools.javac.Main.compile(
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java33 static final Pattern emptyOrCommentPattern = Pattern.compile("( *#.*)?");
34 static final Pattern infoPattern = Pattern.compile("# ([0-9]+: [-A-Za-z ]+, )*[0-9]+: [-A-Za-z ]+");
135 Pattern p = Pattern.compile("\\{([0-9]+)\\}");
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DInput.java77 Pattern.compile("(\\w+)\\s*(\\d+)\\s*(\\w+)");
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DEUC_TW.java81 private static Pattern euctw = Pattern.compile("(?:8ea)?(\\p{XDigit}++)\\s++(\\p{XDigit}++)?\\s*+.*");
H A DHKSCS.java43 Pattern.compile("(?:0x)?+(\\p{XDigit}++)\\s++(?:0x|U\\+)?+(\\p{XDigit}++)?\\s*+(?:0x|U\\+)?(\\p{XDigit}++)?\\s*+.*");
H A DUtils.java58 static final Pattern basic = Pattern.compile("(?:0x)?(\\p{XDigit}++)\\s++(?:0x)?(\\p{XDigit}++)?\\s*+.*");
/openjdk7/hotspot/src/share/vm/runtime/
H A DsimpleThresholdPolicy.hpp70 void compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest3.java156 Pattern pattern = Pattern.compile (result,
H A DTest4.java154 Pattern pattern = Pattern.compile (result,
H A DTest5.java153 Pattern pattern = Pattern.compile (result,
/openjdk7/jdk/test/java/lang/Double/
H A DParseDouble.java542 Pattern fpPattern = Pattern.compile(fpRegex);

Completed in 71 milliseconds

12345678910