Searched refs:compile (Results 76 - 100 of 246) sorted by relevance

12345678910

/openjdk7/corba/make/com/sun/corba/se/sources/
H A DMakefile38 build: portableactivation.idl.compile logwrapper.generate logresource.generate
99 activation.idl.compile: $(ACTIVATIONFILES)
121 portableactivation.idl.compile: $(PORTABLEACTIVATIONFILES)
218 activation.idl.compile activation.idl.clean \
219 portableactivation.idl.compile portableactivation.idl.clean
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DMode.java553 il.append(template.compile(classGen, methodGen));
574 InstructionList til = template.compile(classGen, methodGen);
709 (_testSeq[i]).compile(classGen,
833 ihElem = elemTest.compile(classGen, methodGen, ihRecurse);
839 ihAttr = attrTest.compile(classGen, methodGen, ihAttr);
844 loop.setTarget(_idxTestSeq.compile(classGen, methodGen, body.getStart()));
867 ihElem = _childNodeTestSeq.compile(classGen, methodGen, ihLoop);
882 ihText = _childNodeTestSeq.compile(classGen, methodGen, ihLoop);
915 targets[i] = testSeq.compile(classGen, methodGen,
918 targets[i] = testSeq.compile(classGe
[all...]
H A DTopLevelElement.java64 public InstructionList compile(ClassGenerator classGen, method in class:TopLevelElement
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp295 void IdealGraphPrinter::print_inlining(Compile* compile) { argument
299 InlineTree *inlineTree = compile->ilt();
309 void IdealGraphPrinter::begin_method(Compile* compile) { argument
311 ciMethod *method = compile->method();
672 void IdealGraphPrinter::print_method(Compile* compile, const char *name, int level, bool clear_nodes) { argument
673 print(compile, name, (Node *)compile->root(), level, clear_nodes);
677 void IdealGraphPrinter::print(Compile* compile, const char *name, Node *node, int level, bool clear_nodes) { argument
681 this->C = compile;
H A Dnode.cpp474 Compile *compile = Compile::current(); local
476 Node *n = (Node*)compile->node_arena()->Amalloc_D(size_of() + _max*sizeof(Node*));
495 compile->add_macro_node(n);
497 compile->add_expensive_node(n);
499 n->set_idx(compile->next_unique()); // Get new unique index as well
506 compile->copy_node_notes_to(n, (Node*) this);
521 to[i] = from[i]->clone(compile);
555 Compile* compile = Compile::current(); local
556 if ((uint)_idx+1 == compile->unique()) {
557 compile
[all...]
/openjdk7/jdk/make/javax/swing/beaninfo/
H A DSwingBeans.gmk138 .create.classlist $(FILES_bclass) .compile.classlist
157 .compile.classlist:
204 .compile.classlist mkpackaging mkpackaging swingbeans.clean \
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java500 private synchronized void compile(Token tok) { method in class:RegularExpression
504 this.operations = this.compile(tok, null, false);
510 private Op compile(Token tok, Op next, boolean reverse) { method in class:RegularExpression
538 ret = compile(tok.getChild(i), ret, false);
542 ret = compile(tok.getChild(i), ret, true);
550 uni.addElement(compile(tok.getChild(i), next, reverse));
563 ret = compile(child, ret, reverse);
575 q.setChild(compile(child, ret, reverse));
586 op.setChild(compile(child, op, reverse));
591 ret = compile(chil
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DFilterExprWalker.java78 m_expr = compiler.compile(opPos);
88 m_expr = compiler.compile(opPos + 2);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMain.java107 int compile() { method in class:Main
151 int status = zic.compile();
/openjdk7/jdk/test/java/lang/Character/
H A DCheckScript.java52 Matcher m = Pattern.compile("(\\p{XDigit}+)(?:\\.{2}(\\p{XDigit}+))?\\s+;\\s+(\\w+)\\s+#.*").matcher("");
135 m = Pattern.compile("sc\\s*;\\s*(\\p{Alpha}{4})\\s*;\\s*([\\p{Alpha}|_]+)\\s*.*").matcher("");
/openjdk7/jdk/test/java/nio/file/Path/
H A DMacPathTest.java167 Pattern.compile(fname_nfd, Pattern.CANON_EQ)
171 Pattern.compile(fname_nfc, Pattern.CANON_EQ)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java130 res = compile(out, fm, args);
144 // res = compile(args.toArray(new String[args.size()]), out);
191 private int compile(OutputStream out, StandardJavaFileManager fm, List<String> args) { method in class:Server
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DMain.java330 public int compile(String[] args) { method in class:Main
333 int result = compile(args, context);
341 public int compile(String[] args, Context context) { method in class:Main
342 return compile(args, context, List.<JavaFileObject>nil(), null);
348 public int compile(String[] args, method in class:Main
353 return compile(args, null, context, fileObjects, processors);
356 public int compile(String[] args, method in class:Main
388 // it is allowed to compile nothing if just asking for help or version info
439 comp.compile(fileObjects,
/openjdk7/langtools/test/com/sun/javadoc/DocRootSlash/
H A DDocRootSlash.java214 Pattern.compile("Sub-test " + subtestNum + " Actual: " + prefix + ref1, Pattern.DOTALL);
216 Pattern.compile("Sub-test " + subtestNum + " Expect: " + prefix + ref1, Pattern.DOTALL);
217 // Pattern linkPattern2 = Pattern.compile(prefix + ref2 + label + end, Pattern.DOTALL);
/openjdk7/jdk/test/sun/misc/Version/
H A DVersion.java28 * @compile -XDignore.symbol.file Version.java
123 Pattern p = Pattern.compile(regex);
152 Pattern p = Pattern.compile(regex);
/openjdk7/langtools/test/tools/javac/Paths/6638501/
H A DWsCompileExample.java59 System.out.println("----test compile 1-----");
67 System.out.println("----test compile 2-----");
106 boolean result = compilerHelper.compile(args);
127 public boolean compile(String[] args) { method in class:JavaCompilerHelper
147 "compile",
/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java60 cantRead = Pattern.compile(opt.substring(CANT_READ.length()));
62 cantWrite = Pattern.compile(opt.substring(CANT_WRITE.length()));
/openjdk7/corba/make/sun/rmi/corbalogsources/
H A DMakefile36 build: logwrapper.generate logresource.generate activation.idl.compile portableactivation.idl.compile
177 activation.idl.compile: $(ACTIVATIONFILES)
200 portableactivation.idl.compile: $(PORTABLEACTIVATIONFILES)
/openjdk7/jdk/make/tools/src/build/tools/addjsum/
H A DAddJsum.java50 Pattern p = Pattern.compile("# [0-9A-Fa-f]*");
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPropList.java61 Matcher m = Pattern.compile("(\\p{XDigit}+)(?:\\.{2}(\\p{XDigit}+))?\\s*;\\s+(\\w+)\\s+#.*").matcher("");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DJavaCompilerHelper.java63 static boolean compile(String[] args, OutputStream out, ErrorReceiver receiver){ method in class:JavaCompilerHelper
72 "compile",
79 receiver.error(JavacompilerMessages.JAVACOMPILER_NOSUCHMETHOD_ERROR("getMethod(\"compile\", Class[])"), e2);
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestEditor.java87 Class type = loader.compile(classname, content);
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequest.java136 = Pattern.compile("\\A([A-Z]+) +([^ ]+) +HTTP/([0-9\\.]+)$"
/openjdk7/langtools/test/tools/javac/
H A DT6358166.java69 c.compile(List.of(f));
/openjdk7/langtools/test/tools/javap/4111861/
H A DT4111861.java54 int rc = com.sun.tools.javac.Main.compile(args, pw);

Completed in 75 milliseconds

12345678910