HomeSort by relevance Sort by last modified time
    Searched refs:Compiler (Results 1 - 25 of 60) sorted by null

1 2 3

  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
CompilerTest.java 25 * @tests java.lang.Compiler#command(java.lang.Object)
28 assertNull("Incorrect behavior.", Compiler.command(new Object()));
32 * @tests java.lang.Compiler#compileClass(java.lang.Class)
37 Compiler.compileClass(Compiler.class);
41 * @tests java.lang.Compiler#compileClasses(java.lang.String)
46 Compiler.compileClasses("Compiler");
50 * @tests java.lang.Compiler#disable()
53 Compiler.disable()
    [all...]
  /libcore/luni/src/main/java/java/lang/
Compiler.java 22 * <em>Just In Time (JIT)</em> compiler. This class is usually implemented by
25 public final class Compiler {
30 private Compiler(){
36 * method is the low-level interface to the JIT compiler. It may return any
37 * object or {@code null} if no JIT compiler is available. Returns null
41 * the command object for the JIT compiler.
49 * Compiles the specified class using the JIT compiler and indicates if
56 * {@code false} if it has failed or if there is no JIT compiler
65 * compiler and indicates if compilation has been successful. Does nothing
71 * {@code false} if it has failed or if there is no JIT compiler
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/axes/
AttributeIterator.java 24 import org.apache.xpath.compiler.Compiler;
39 * @param compiler A reference to the Compiler that contains the op map.
45 AttributeIterator(Compiler compiler, int opPos, int analysis)
48 super(compiler, opPos, analysis);
SelfIteratorNoPredicate.java 25 import org.apache.xpath.compiler.Compiler;
40 * @param compiler A reference to the Compiler that contains the op map.
47 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis)
50 super(compiler, opPos, analysis, false);
ChildIterator.java 26 import org.apache.xpath.compiler.Compiler;
42 * @param compiler A reference to the Compiler that contains the op map.
49 ChildIterator(Compiler compiler, int opPos, int analysis)
52 super(compiler, opPos, analysis, false);
ChildTestIterator.java 27 import org.apache.xpath.compiler.Compiler;
48 * @param compiler A reference to the Compiler that contains the op map.
54 ChildTestIterator(Compiler compiler, int opPos, int analysis)
57 super(compiler, opPos, analysis);
OneStepIteratorForward.java 26 import org.apache.xpath.compiler.Compiler;
27 import org.apache.xpath.compiler.OpMap;
46 * @param compiler A reference to the Compiler that contains the op map.
52 OneStepIteratorForward(Compiler compiler, int opPos, int analysis)
55 super(compiler, opPos, analysis);
58 m_axis = WalkerFactory.getAxisFromStep(compiler, firstStepPos);
WalkingIteratorSorted.java 25 import org.apache.xpath.compiler.Compiler;
56 * into the Compiler to create predicate expressions.
58 * @param compiler The Compiler which is creating
61 * opcode list from the compiler.
69 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
72 super(compiler, opPos, analysis, shouldLoadWalkers);
BasicTestIterator.java 27 import org.apache.xpath.compiler.Compiler;
28 import org.apache.xpath.compiler.OpMap;
64 * into the Compiler to create predicate expressions.
66 * @param compiler The Compiler which is creating
69 * opcode list from the compiler.
73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis)
76 super(compiler, opPos, analysis, false)
    [all...]
UnionPathIterator.java 29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
147 * into the Compiler to create predicate expressions.
149 * @param compiler The Compiler which is creating
152 * opcode list from the compiler.
156 public UnionPathIterator(Compiler compiler, int opPos
    [all...]
FilterExprWalker.java 30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
56 * @param compiler non-null reference to the Compiler that is constructing.
62 public void init(Compiler compiler, int opPos, int stepType)
66 super.init(compiler, opPos, stepType);
76 m_expr = compiler.compile(opPos);
86 m_expr = compiler.compile(opPos + 2)
    [all...]
OneStepIterator.java 29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
50 * @param compiler A reference to the Compiler that contains the op map.
56 OneStepIterator(Compiler compiler, int opPos, int analysis)
59 super(compiler, opPos, analysis);
62 m_axis = WalkerFactory.getAxisFromStep(compiler, firstStepPos);
WalkingIterator.java 29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
42 * into the Compiler to create predicate expressions.
44 * @param compiler The Compiler which is creating
47 * opcode list from the compiler.
55 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
58 super(compiler, opPos, analysis, shouldLoadWalkers)
    [all...]
WalkerFactory.java 28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.FunctionTable;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
51 * @param compiler non-null reference to compiler object that has processed
61 WalkingIterator lpi, Compiler compiler, int stepOpCodePos)
66 int stepType = compiler.getOp(stepOpCodePos)
    [all...]
LocPathIterator.java 32 import org.apache.xpath.compiler.Compiler;
79 * into the Compiler to create predicate expressions.
81 * @param compiler The Compiler which is creating
84 * opcode list from the compiler.
88 protected LocPathIterator(Compiler compiler, int opPos, int analysis)
91 this(compiler, opPos, analysis, true);
97 * into the Compiler to create predicate expressions
    [all...]
AxesWalker.java 33 import org.apache.xpath.compiler.Compiler;
64 * @param compiler The Compiler object that has information about this
71 public void init(Compiler compiler, int opPos, int stepType)
75 initPredicateInfo(compiler, opPos);
77 // int testType = compiler.getOp(nodeTestOpPos);
DescendantIterator.java 30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.compiler.OpMap;
47 * @param compiler A reference to the Compiler that contains the op map.
53 DescendantIterator(Compiler compiler, int opPos, int analysis)
57 super(compiler, opPos, analysis, false);
60 int stepType = compiler.getOp(firstStepPos)
    [all...]
MatchPatternIterator.java 28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.OpMap;
63 * into the Compiler to create predicate expressions.
65 * @param compiler The Compiler which is creating
68 * opcode list from the compiler.
74 MatchPatternIterator(Compiler compiler, int opPos, int analysis)
78 super(compiler, opPos, analysis, false)
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncLast.java 26 import org.apache.xpath.compiler.Compiler;
45 public void postCompileStep(Compiler compiler)
47 m_isTopLevel = compiler.getLocationPathDepth() == -1;
FuncPosition.java 27 import org.apache.xpath.compiler.Compiler;
44 public void postCompileStep(Compiler compiler)
46 m_isTopLevel = compiler.getLocationPathDepth() == -1;
Function.java 28 import org.apache.xpath.compiler.Compiler;
47 * XPath compiler.
66 * called by the compiler for static number of arguments checking.
140 public void postCompileStep(Compiler compiler)
  /external/v8/src/
compiler.cc 33 #include "compiler.h"
86 // --full-compiler enables the dedicated backend for code we expect to be
88 // --fast-compiler enables a speculative optimizing backend (for
92 // --always-full-compiler and --always-fast-compiler, which are mutually
122 Compiler::ValidationState validate,
134 bool is_json = (validate == Compiler::VALIDATE_JSON);
218 Compiler::SetFunctionInfo(fun, lit, true, script);
237 Handle<JSFunction> Compiler::Compile(Handle<String> source,
248 // The VM is in the COMPILER state until exiting this function
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
XPath.java 33 import org.apache.xpath.compiler.Compiler;
34 import org.apache.xpath.compiler.FunctionTable;
35 import org.apache.xpath.compiler.XPathParser;
153 * Compiler and compiles the expression.
175 Compiler compiler = new Compiler(errorListener, locator, m_funcTable); local
178 parser.initXPath(compiler, exprString, prefixResolver);
180 parser.initMatchPattern(compiler, exprString, prefixResolver)
224 Compiler compiler = new Compiler(errorListener, locator, m_funcTable); local
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/compiler/
Lexer.java 21 package org.apache.xpath.compiler;
38 private Compiler m_compiler;
75 * @param compiler The owning compiler for this lexer.
80 Lexer(Compiler compiler, PrefixResolver resolver,
84 m_compiler = compiler;
  /external/openssl/ssl/
ssl-lib.com 15 $! (i.e. ALPHA or VAX) and which "C" compiler you have (i.e. VAXC, DECC
16 $! or GNU C) or you can specify which compiler to use.
27 $! Specify which compiler at P3 to try to compile under.
33 $! If you don't specify a compiler, it will try to determine which
34 $! "C" compiler to use.
43 $! P5, if defined, sets a compiler thread NOT needed on OpenVMS 7.1 (and up)
346 $ IF (COMPILER.EQS."VAXC")
375 $ IF (COMPILER.EQS."GNUC")
405 $ IF (COMPILER.EQS."DECC")
580 $ WRITE SYS$OUTPUT "Compiling With Compiler Optimization.
    [all...]

Completed in 155 milliseconds

1 2 3