Searched defs:compiled (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/test/compiler/6443505/
H A DTest6443505.java30 * @run main/othervm -Xcomp -XX:CompileOnly="Test6443505.compiled" Test6443505
65 int C = compiled(4, a, b);
73 C = compiled(a, b, q, 4);
85 // If improperly compiled, uses carry/borrow bit, which is wrong.
87 static int compiled(int p, int x, int y) { method in class:Test6443505
98 static int compiled(int x, int y, int q, int p) { method in class:Test6443505
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DXJCListener.java89 * Called after the schema is compiled and the code generation strategy is determined,
95 public void compiled(Outline outline) {} method in class:XJCListener
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.hpp88 int compiled() { function in class:VALUE_OBJ_CLASS_SPEC
98 return (interpreted() + compiled() + native() + compiling());
297 static int all_comp_ticks; // ticks in compiled code (+ native)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java157 /** A table mapping flat names of all compiled classes in this run to their
160 public Map<Name,ClassSymbol> compiled = new HashMap<Name, ClassSymbol>(); field in class:Check
415 if (compiled.get(flatname) == null) return flatname;
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java40 * A compiled representation of a regular expression.
42 * <p> A regular expression, specified as a string, must first be compiled into
65 * is less efficient since it does not allow the compiled pattern to be reused.
937 * Boolean indicating this Pattern is compiled; this is necessary in order
940 private transient volatile boolean compiled = false; field in class:Pattern
1016 * The expression to be compiled
1030 * The expression to be compiled
1051 * Returns the regular expression from which this pattern was compiled.
1063 * compiled.</p>
1082 if (!compiled) {
[all...]

Completed in 94 milliseconds