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

1 2 3 4 5 6

  /external/apache-harmony/luni/src/test/api/common/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 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...]
  /gdk/sources/llvm-ndk-cc/
Compiler.cpp 1 #include "Compiler.h"
68 void Compiler::LLVMErrorHandler(void *UserData, const std::string &Message) {
74 void Compiler::createDiagnostic() {
83 void Compiler::createTarget(const std::string &Triple, const std::string &CPU,
102 void Compiler::createFileManager() {
107 void Compiler::createSourceManager() {
112 void Compiler::createPreprocessor() {
140 void Compiler::createASTContext() {
153 *Compiler::createBackend(const clang::CodeGenOptions& CodeGenOpts,
163 Compiler::Compiler() : mInitialized(false), mpDiagClient(NULL), mOT(OT_Default)
    [all...]
llvm-ndk-cc.cpp 30 #include "Compiler.h"
90 ndkpc::Compiler Compiler;
91 Compiler.init(std::string(),
95 Compiler.setInputSource(InputFilename);
96 Compiler.setIncludePaths(IncludePaths);
97 Compiler.setOutput(OutputFilename.c_str());
98 Compiler.setPreDefinedSymbol(PreDefinedSymbolMap);
100 int ret = Compiler.compile();
Backend.cpp 86 if ((mOT != Compiler::OT_Assembly) && (mOT != Compiler::OT_Object))
168 if (mOT == Compiler::OT_Object)
183 Compiler::OutputType OT)
272 case Compiler::OT_Assembly:
273 case Compiler::OT_Object: {
288 case Compiler::OT_LLVMAssembly: {
294 case Compiler::OT_Bitcode: {
300 case Compiler::OT_Nothing: {
  /frameworks/compile/libbcc/lib/ExecutionEngine/
CompilerOption.h 21 #include "Compiler.h"
33 // pass to the Compiler::compiler() without any modification for RenderScript,
36 // Must be invoked after calling Compiler::GlobalInitialization() at least once.
44 if ((Compiler::getTargetArchType() == llvm::Triple::x86_64) ||
45 (Compiler::getTargetArchType() == llvm::Triple::x86)) {
74 if (Compiler::getTargetArchType() == llvm::Triple::x86_64) {
Compiler.cpp 17 #include "Compiler.h"
87 // BCC Compiler Static Variables
90 bool Compiler::GlobalInitialized = false;
106 // Code generation optimization level for the compiler
107 llvm::CodeGenOpt::Level Compiler::CodeGenOptLevel;
109 std::string Compiler::Triple;
110 llvm::Triple::ArchType Compiler::ArchType;
112 std::string Compiler::CPU;
114 std::vector<std::string> Compiler::Features;
118 // Compiler
    [all...]
  /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);
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);
  /external/regex-re2/re2/
compile.cc 9 // The Compiler class defined in this file is private.
121 class Compiler : public Regexp::Walker<Frag> {
123 explicit Compiler();
124 ~Compiler();
141 // The Compiler traverses the Regexp parse tree, visiting
186 // Rune range compiler.
235 DISALLOW_EVIL_CONSTRUCTORS(Compiler);
238 Compiler::Compiler() {
253 Compiler::~Compiler()
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 3 // The LLVM Compiler Infrastructure
35 // code that sets up a compiler to run tools on it, and we should refactor
191 // Create a compiler instance to handle the actual work.
192 clang::CompilerInstance Compiler;
193 Compiler.setInvocation(Invocation);
194 Compiler.setFileManager(Files);
198 Compiler.createDiagnostics(CC1Args.size(),
200 if (!Compiler.hasDiagnostics())
203 Compiler.createSourceManager(*Files);
204 addFileMappingsTo(Compiler.getSourceManager())
    [all...]