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

1 2 3

  /art/compiler/
compiler.h 34 class Compiler {
41 static Compiler* Create(CompilerDriver* driver, Kind kind);
77 virtual ~Compiler() {}
99 Compiler(CompilerDriver* driver, uint64_t warning) :
111 DISALLOW_COPY_AND_ASSIGN(Compiler);
  /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/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);
  /libcore/ojluni/src/main/java/java/lang/
Compiler.java 32 public final class Compiler {
36 private Compiler() {} // don't make instances
39 * Compiles the specified class using the JIT compiler and indicates if
46 * {@code false} if it has failed or if there is no JIT compiler
55 * compiler and indicates if compilation has been successful. Does nothing
61 * {@code false} if it has failed or if there is no JIT compiler
70 * method is the low-level interface to the JIT compiler. It may return any
71 * object or {@code null} if no JIT compiler is available. Returns null
75 * the command object for the JIT compiler.
83 * Enables the JIT compiler. Does nothing on Android
    [all...]
  /art/test/968-default-partial-compile-generated/util-src/
generate_java.py 57 class Compiler:
80 # no compiler problems (works since classes only implement 1 interface).
131 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
  /art/test/971-iface-super/util-src/
generate_java.py 57 class Compiler:
80 # no compiler problems (works since classes only implement 1 interface).
135 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 3 // The LLVM Compiler Infrastructure
88 CompilerInstance compiler; local
89 compiler.setInvocation(invocation);
90 compiler.createDiagnostics();
93 ASSERT_TRUE(compiler.ExecuteAction(test_action));
108 CompilerInstance compiler; local
109 compiler.setInvocation(invocation);
110 compiler.createDiagnostics();
113 ASSERT_TRUE(compiler.ExecuteAction(test_action));
135 CompilerInstance compiler; local
    [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/libbcc/include/bcc/
Compiler.h 42 // Design of Compiler
44 // 1. A compiler instance can be constructed provided an "initial config."
45 // 2. A compiler can later be re-configured using config().
50 // 4. Once a compiler instance is created, you can use the compile() service
53 class Compiler {
93 Compiler();
94 Compiler(const CompilerConfig &pConfig);
115 ~Compiler();
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 17 #include "bcc/Compiler.h"
51 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) {
56 return "Invalid compiler config supplied (getTarget() returns nullptr.) "
64 "TargetMachine. (missing call to Compiler::config()?)";
83 // This assert should never be reached as the compiler verifies that the
92 Compiler::Compiler() : mTarget(nullptr), mEnableOpt(true) {
96 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(nullptr),
110 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig)
    [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...]
  /external/clang/lib/Driver/
Tools.h 3 // The LLVM Compiler Infrastructure
20 #include "llvm/Support/Compiler.h"
36 class Compiler;
45 /// \brief Clang compiler tool.
97 visualstudio::Compiler *getCLFallback() const;
99 mutable std::unique_ptr<visualstudio::Compiler> CLFallback;
175 class LLVM_LIBRARY_VISIBILITY Compiler : public Common {
177 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {}
695 class LLVM_LIBRARY_VISIBILITY Compiler : public Tool
    [all...]
Driver.cpp 3 // The LLVM Compiler Infrastructure
57 DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr),
169 // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
550 // Print the version of the compiler.
760 // was the compiler then assume it gave a reasonable error code. Failures
    [all...]
ToolChains.h 3 // The LLVM Compiler Infrastructure
20 #include "llvm/Support/Compiler.h"
234 mutable std::unique_ptr<tools::gcc::Compiler> Compile;
256 /// Get the "MachO" arch name for a particular compiler invocation. For
264 /// Add the linker arguments to link the compiler runtime library.
666 mutable std::unique_ptr<tools::gcc::Compiler> Compiler;
    [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/compiler/
Compiler.java 19 * $Id: Compiler.java 468655 2006-10-28 07:12:06Z minchau $
21 package org.apache.xpath.compiler;
73 public class Compiler extends OpMap
77 * Construct a Compiler object with a specific ErrorListener and
88 public Compiler(ErrorListener errorHandler, SourceLocator locator,
97 * Construct a Compiler instance that has a null error listener and a
100 public Compiler()
    [all...]
  /external/v8/src/
compiler.h 25 // The V8 compiler API.
28 // Logic for which compiler to choose and how to wire compilation results into
35 class Compiler : public AllStatic {
56 // Give the compiler a chance to perform low-latency initialization tasks of
61 // Parser::Parse, then Compiler::Analyze.
71 // is left to the discretion of the compiler.
501 // TODO(rmcilroy/mstarzinger): Temporary work-around until compiler.cc is
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/
gmaven-runtime-api-1.5.jar 
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-compiler-api/2.2/
plexus-compiler-api-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
logback-core-0.9.8-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy/1.4.33/
byte-buddy-1.4.33.jar 

Completed in 831 milliseconds

1 2 3