HomeSort by relevance Sort by last modified time
    Searched refs:Compiler (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/javassist/sample/preproc/
Compiler.java 39 * java sample.preproc.Compiler sample.j
52 public class Compiler {
58 * Constructs a <code>Compiler</code> with a source file.
62 public Compiler(String inputname) throws CannotCompileException {
223 * Is invoked if this compiler encoutenrs:
285 Compiler c = new Compiler(args[0]);
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Android.mk 26 Compiler.cpp \
Script.h 23 #include "Compiler.h"
86 Compiler::GlobalInitialization();
  /external/apache-xml/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...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
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...]
PredicatedNodeTest.java 30 import org.apache.xpath.compiler.Compiler;
153 * @param compiler The Compiler object that has information about this
159 protected void initPredicateInfo(Compiler compiler, int opPos)
163 int pos = compiler.getFirstPredicateOpPos(opPos);
167 m_predicates = compiler.getCompiledPredicates(pos);
  /external/apache-xml/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/llvm/bindings/ocaml/bitreader/
llvm_bitreader.mli 3 * The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 3 * The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/target/
llvm_target.ml 3 * The LLVM Compiler Infrastructure
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp 22 #include "ExecutionEngine/Compiler.h"
105 AsmInfo = Target->createMCAsmInfo(Compiler::getTargetTriple());
  /external/v8/src/
compiler.cc 30 #include "compiler.h"
117 // Determine whether to use the full compiler for all code. If the flag
118 // --always-full-compiler is specified this is the case. For the virtual frame
119 // based compiler the full compiler is also used if a debugger is connected, as
120 // the code from the full compiler supports mode precise break points. For the
121 // crankshaft adaptive compiler debugging the optimized code is not possible at
123 // the full compiler need not be be used if a debugger is attached, but only if
211 // to use the Hydrogen-based optimizing compiler. We already have
219 // the optimizing compiler
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Compiler.java 52 * <ul><pre>% java Compiler Dog -m MetaDog -c CMetaDog Cat -m MetaCat Cow
70 public class Compiler {
159 out.println("Usage: java javassist.tools.reflect.Compiler");
  /frameworks/compile/slang/
llvm-rs-cc.cpp 332 OS << "llvm-rs-cc: Renderscript compiler\n"
381 "Renderscript source compiler");
396 // Prepare input data for RS compiler.
400 llvm::OwningPtr<slang::SlangRS> Compiler(new slang::SlangRS());
402 Compiler->init(Opts.mTriple, Opts.mCPU, Opts.mFeatures);
436 int CompileFailed = !Compiler->compile(IOFiles,
447 Compiler->reset();
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.mli 3 * The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/transforms/scalar/
llvm_scalar_opts.ml 3 * The LLVM Compiler Infrastructure
  /external/llvm/lib/Target/X86/
X86CompilationCallback_Win64.asm 3 ;; The LLVM Compiler Infrastructure

Completed in 604 milliseconds

12 3 4