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

12 3 4 5 6 7

  /external/compiler-rt/lib/profile/
Makefile.mk 3 # The LLVM Compiler Infrastructure
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 3 # The LLVM Compiler Infrastructure
  /external/compiler-rt/lib/x86_64/
Makefile.mk 3 # The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.ml 3 * The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 3 * The LLVM Compiler Infrastructure
  /frameworks/compile/libbcc/tools/bcc/
Main.cpp 32 #include <bcc/Compiler.h>
93 // Compiler Options
132 llvm::errs() << "Out of memory when create the compiler configuration!\n";
148 Compiler::ErrorCode result = RSC->config(*config);
150 if (result != Compiler::kSuccess) {
151 llvm::errs() << "Failed to configure the compiler! (detail: "
152 << Compiler::GetErrorString(result) << ")\n";
160 bool CompileScript(Compiler &pCompiler, Script &pScript,
171 // Run the compiler.
172 Compiler::ErrorCode result = pCompiler.compile(pScript, output_file)
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 3 // The LLVM Compiler Infrastructure
44 // code that sets up a compiler to run tools on it, and we should refactor
199 // Create a compiler instance to handle the actual work.
200 clang::CompilerInstance Compiler;
201 Compiler.setInvocation(Invocation);
202 Compiler.setFileManager(Files);
205 // ToolAction can have lifetime requirements for Compiler or its members, and
206 // we need to ensure it's deleted earlier than Compiler. So we pass it to an
207 // OwningPtr declared after the Compiler variable.
211 Compiler.createDiagnostics()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
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...]