/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
CompilerTest.java | 25 * java.lang.Compiler#command(java.lang.Object) 28 assertNull("Incorrect behavior.", Compiler.command(new Object())); 32 * java.lang.Compiler#compileClass(java.lang.Class) 37 Compiler.compileClass(Compiler.class); 41 * java.lang.Compiler#compileClasses(java.lang.String) 46 Compiler.compileClasses("Compiler"); 50 * java.lang.Compiler#disable() 53 Compiler.disable() [all...] |
/external/chromium_org/third_party/cython/src/bin/ |
cython | 7 from Cython.Compiler.Main import main
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
GDBJIT.cpp | 21 // The LLVM Compiler Infrastructure 32 #include <llvm/Support/Compiler.h>
|
/libcore/luni/src/main/java/java/lang/ |
Compiler.java | 23 public final class Compiler { 27 private Compiler() { 33 * method is the low-level interface to the JIT compiler. It may return any 34 * object or {@code null} if no JIT compiler is available. Returns null 38 * the command object for the JIT compiler. 46 * Compiles the specified class using the JIT compiler and indicates if 53 * {@code false} if it has failed or if there is no JIT compiler 62 * compiler and indicates if compilation has been successful. Does nothing 68 * {@code false} if it has failed or if there is no JIT compiler 76 * Disables the JIT compiler. Does nothing on Android [all...] |
/external/clang/unittests/AST/ |
ExternalASTSourceTest.cpp | 3 // The LLVM Compiler Infrastructure 48 CompilerInstance Compiler; 49 Compiler.createDiagnostics(); 57 Compiler.getDiagnostics()); 58 Compiler.setInvocation(Invocation); 61 return Compiler.ExecuteAction(Action);
|
/external/apache-xml/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);
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
CodeGeneration.py | 1 from Cython.Compiler.Visitor import VisitorTransform 2 from Cython.Compiler.Nodes import StatListNode
|
/frameworks/compile/libbcc/lib/Core/ |
Compiler.cpp | 17 #include "bcc/Compiler.h" 41 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) { 46 return "Invalid compiler config supplied (getTarget() returns NULL.) " 54 "TargetMachine. (missing call to Compiler::config()?)"; 83 // This assert should never be reached as the compiler verifies that the 92 Compiler::Compiler() : mTarget(NULL), mEnableLTO(true) { 96 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(NULL), 110 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) [all...] |
Android.mk | 27 Compiler.cpp \
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompilerDriver.cpp | 26 #include "bcc/Compiler.h" 195 // Haven't run the compiler ever. 218 Compiler::ErrorCode RSCompilerDriver::compileScript(RSScript& pScript, const char* pScriptName, 231 // compiler therefore it should be extracted before compilation. 235 return Compiler::kErrInvalidSource; 241 // This is required since RS compiler may need information in the info file 250 return Compiler::kErrInvalidSource; 265 return Compiler::kErrInvalidSource; 276 return Compiler::kErrInvalidSource; 279 // Setup the config to the compiler [all...] |
/external/fio/compiler/ |
compiler.h | 5 #include "compiler-gcc4.h" 7 #include "compiler-gcc3.h" 9 #error Compiler too old, need gcc at least gcc 3.x
|
/frameworks/compile/libbcc/include/bcc/Renderscript/ |
RSCompiler.h | 20 #include "bcc/Compiler.h" 24 class RSCompiler : public Compiler {
|
/art/compiler/ |
compiler.h | 36 class Compiler { 44 static Compiler* Create(CompilerDriver* driver, Kind kind); 97 virtual ~Compiler() {} 113 explicit Compiler(CompilerDriver* driver, uint64_t warning) : 125 DISALLOW_COPY_AND_ASSIGN(Compiler);
|
compiler.cc | 17 #include "compiler.h" 40 CompiledMethod* Compiler::TryCompileWithSeaIR(const art::DexFile::CodeItem* code_item, 87 class LLVMCompiler FINAL : public Compiler { 89 explicit LLVMCompiler(CompilerDriver* driver) : Compiler(driver, 1000) {} 179 Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) { 191 LOG(FATAL) << "Portable compiler not compiled";
|
/external/compiler-rt/lib/tsan/ |
Makefile.mk | 3 # The LLVM Compiler Infrastructure
|
/external/llvm/bindings/ocaml/all_backends/ |
llvm_all_backends.ml | 3 * The LLVM Compiler Infrastructure
|
llvm_all_backends.mli | 3 * The LLVM Compiler Infrastructure
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/ |
TestVisitor.py | 1 from Cython.Compiler.ModuleNode import ModuleNode 2 from Cython.Compiler.Symtab import ModuleScope 4 from Cython.Compiler.Visitor import MethodDispatcherTransform 5 from Cython.Compiler.ParseTreeTransforms import (
|
TestMemView.py | 2 import Cython.Compiler.Errors as Errors 3 from Cython.Compiler.Nodes import * 4 from Cython.Compiler.ParseTreeTransforms import * 5 from Cython.Compiler.Buffer import *
|
/external/chromium_org/third_party/cython/src/ |
cython.py | 16 from Cython.Compiler.Main import main
|
/frameworks/compile/libbcc/include/bcc/ |
Compiler.h | 41 // Design of Compiler 43 // 1. A compiler instance can be constructed provided an "initial config." 44 // 2. A compiler can later be re-configured using config(). 49 // 4. Once a compiler instance is created, you can use the compile() service 52 class Compiler { 90 Compiler(); 91 Compiler(const CompilerConfig &pConfig); 112 virtual ~Compiler();
|
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/ |
GDBJIT.h | 21 // The LLVM Compiler Infrastructure 37 #include <llvm/Support/Compiler.h>
|
/external/chromium_org/third_party/re2/re2/ |
compile.cc | 9 // The Compiler class defined in this file is private. 123 class Compiler : public Regexp::Walker<Frag> { 125 explicit Compiler(); 126 ~Compiler(); 143 // The Compiler traverses the Regexp parse tree, visiting 188 // Rune range compiler. 237 DISALLOW_EVIL_CONSTRUCTORS(Compiler); 240 Compiler::Compiler() { 255 Compiler::~Compiler() [all...] |
/external/regex-re2/re2/ |
compile.cc | 9 // The Compiler class defined in this file is private. 122 class Compiler : public Regexp::Walker<Frag> { 124 explicit Compiler(); 125 ~Compiler(); 142 // The Compiler traverses the Regexp parse tree, visiting 187 // Rune range compiler. 236 DISALLOW_EVIL_CONSTRUCTORS(Compiler); 239 Compiler::Compiler() { 254 Compiler::~Compiler() [all...] |