/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/ubsan/ |
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
|
/external/clang/lib/Tooling/ |
Tooling.cpp | 3 // The LLVM Compiler Infrastructure 43 // code that sets up a compiler to run tools on it, and we should refactor 197 // Create a compiler instance to handle the actual work. 198 clang::CompilerInstance Compiler; 199 Compiler.setInvocation(Invocation); 200 Compiler.setFileManager(Files); 203 // ToolAction can have lifetime requirements for Compiler or its members, and 204 // we need to ensure it's deleted earlier than Compiler. So we pass it to an 205 // OwningPtr declared after the Compiler variable. 209 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...] |
/external/compiler-rt/lib/asan/ |
Makefile.mk | 3 # The LLVM Compiler Infrastructure
|
/external/compiler-rt/lib/msan/ |
Makefile.mk | 3 # The LLVM Compiler Infrastructure
|
/external/compiler-rt/lib/tsan/rtl/ |
Makefile.mk | 3 # The LLVM Compiler Infrastructure
|
/external/llvm/bindings/ocaml/bitwriter/ |
llvm_bitwriter.ml | 3 * The LLVM Compiler Infrastructure
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompilerDriver.cpp | 165 // Haven't run the compiler ever. 203 // compiler therefore it should be extracted before compilation. 212 // This is required since RS compiler may need information in the info file 254 // Setup the config to the compiler. 259 ALOGE("Failed to setup config for RS compiler to compile %s!", pOutputPath); 265 // Compiler need to re-config if it's haven't run the config() yet or the 268 Compiler::ErrorCode err = mCompiler.config(*mConfig); 269 if (err != Compiler::kSuccess) { 270 ALOGE("Failed to config the RS compiler for %s! (%s)",pOutputPath, 271 Compiler::GetErrorString(err)) [all...] |
/external/clang/tools/scan-build/ |
c++-analyzer | 3 # The LLVM Compiler Infrastructure 25 # Compiler command setup. 28 my $Compiler; 42 $Compiler = $ENV{'CCC_CXX'}; 43 if (!defined $Compiler) { $Compiler = $DefaultCXXCompiler; } 49 $Compiler = $ENV{'CCC_CC'}; 50 if (!defined $Compiler) { $Compiler = $DefaultCCompiler; } 124 `$Compiler -v >> $PPFile.info.txt 2>&1` [all...] |
ccc-analyzer | 3 # The LLVM Compiler Infrastructure 25 # Compiler command setup. 28 my $Compiler; 42 $Compiler = $ENV{'CCC_CXX'}; 43 if (!defined $Compiler) { $Compiler = $DefaultCXXCompiler; } 49 $Compiler = $ENV{'CCC_CC'}; 50 if (!defined $Compiler) { $Compiler = $DefaultCCompiler; } 124 `$Compiler -v >> $PPFile.info.txt 2>&1` [all...] |
/frameworks/compile/libbcc/tools/bcc/ |
Main.cpp | 32 #include <bcc/Compiler.h> 78 // Compiler Options 186 bool ConfigCompiler(Compiler &pCompiler) { 195 llvm::errs() << "Out of memory when create the compiler configuration!\n"; 214 Compiler::ErrorCode result = pCompiler.config(*config); 218 if (result != Compiler::kSuccess) { 219 llvm::errs() << "Failed to configure the compiler! (detail: " 220 << Compiler::GetErrorString(result) << ")\n"; 265 bool CompileScript(Compiler &pCompiler, Script &pScript, 276 // Run the compiler 410 Compiler compiler; local [all...] |
/frameworks/compile/libbcc/tools/bcc_compat/ |
Main.cpp | 32 #include <bcc/Compiler.h> 80 // Compiler Options 166 RSCompiler *compiler = pCompilerDriver.getCompiler(); local 175 llvm::errs() << "Out of memory when create the compiler configuration!\n"; 209 Compiler::ErrorCode result = compiler->config(*config); 211 if (result != Compiler::kSuccess) { 212 llvm::errs() << "Failed to configure the compiler! (detail: " 213 << Compiler::GetErrorString(result) << ")\n"; 270 Compiler compiler local [all...] |
/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]);
|
/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/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/clang/unittests/Tooling/ |
ToolingTest.cpp | 3 // The LLVM Compiler Infrastructure 35 clang::CompilerInstance& compiler, StringRef dummy) { 175 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &Compiler, 177 Compiler.getFrontendOpts().SkipFunctionBodies = true;
|