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

1 2 3 4 5 6 7 8 91011>>

  /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/swiftshader/third_party/subzero/src/
IceCompiler.h 1 //===- subzero/src/IceCompiler.h - Compiler driver --------------*- C++ -*-===//
28 /// A compiler driver. It may be called to handle a single compile request.
29 class Compiler {
30 Compiler(const Compiler &) = delete;
31 Compiler &operator=(const Compiler &) = delete;
34 Compiler() = default;
36 /// Run the compiler with the given GlobalContext for compilation state. Upon
IceCompileServer.h 13 /// Given a compiler implementation, it dispatches compile requests to the
33 /// given Compiler. Each request is paired with an input stream, a context
63 Compiler &getCompiler() { return Comp; }
65 Compiler Comp;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
Compiler.java 15 * Provides ability to detect compiler based on difference in generated bytecode
18 enum Compiler {
29 Compiler.class.getDeclaredField("$SWITCH_TABLE$"
30 + Compiler.class.getName().replace('.', '$'));
  /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/compiler/
compiler.cc 17 #include "compiler.h"
26 Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) {
39 bool Compiler::IsPathologicalCase(const DexFile::CodeItem& code_item,
48 LOG(INFO) << "Method exceeds compiler instruction limit: "
54 LOG(INFO) << "Method exceeds compiler virtual register limit: "
common_compiler_test.h 25 #include "compiler.h"
61 Compiler::Kind GetCompilerKind() const;
62 void SetCompilerKind(Compiler::Kind compiler_kind);
66 // Get the set of image classes given to the compiler-driver in SetUp. Note: the compiler
70 // Get the set of compiled classes given to the compiler-driver in SetUp. Note: the compiler
74 // Get the set of compiled methods given to the compiler-driver in SetUp. Note: the compiler
99 void CreateCompilerDriver(Compiler::Kind kind, InstructionSet isa, size_t number_of_threads = 2U)
    [all...]
compiler.h 42 class Compiler {
55 static Compiler* Create(CompilerDriver* driver, Kind kind);
93 virtual ~Compiler() {}
115 Compiler(CompilerDriver* driver, uint64_t warning) :
127 DISALLOW_COPY_AND_ASSIGN(Compiler);
  /art/compiler/optimizing/
optimizing_compiler.h 26 class Compiler;
30 Compiler* CreateOptimizingCompiler(CompilerDriver* driver);
33 // is an indicative we are running tests. The compiler will use that
  /external/clang/unittests/Frontend/
CodeGenActionTest.cpp 3 // The LLVM Compiler Infrastructure
51 CompilerInstance Compiler;
52 Compiler.setInvocation(Invocation);
53 Compiler.createDiagnostics();
54 EXPECT_TRUE(Compiler.hasDiagnostics());
57 bool Success = Compiler.ExecuteAction(*Act);
  /art/compiler/jni/quick/
jni_compiler.h 20 #include "compiler.h"
28 CompiledMethod* ArtQuickJniCompileMethod(CompilerDriver* compiler,
32 Compiler::JniOptimizationFlags optimization_flags);
  /frameworks/compile/mclinker/include/mcld/Support/
Compiler.h 1 //===- Compiler.h ---------------------------------------------------------===//
12 #include <llvm/Support/Compiler.h>
  /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);
  /frameworks/compile/libbcc/lib/
RSCompilerDriver.cpp 26 #include "bcc/Compiler.h"
83 // Haven't run the compiler ever.
109 Compiler::ErrorCode RSCompilerDriver::compileScript(Script& pScript, const char* pScriptName,
121 if (mCompiler.screenGlobalFunctions(pScript) != Compiler::kSuccess) {
122 return Compiler::kErrInvalidSource;
145 return Compiler::kErrInvalidSource;
160 return Compiler::kErrInvalidOutputFileState;
170 return Compiler::kErrPrepareOutput;
173 // Setup the config to the compiler.
177 ALOGE("Failed to setup config for RS compiler to compile %s!"
    [all...]
Compiler.cpp 23 #include "bcc/Compiler.h"
118 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) {
123 return "Invalid compiler config supplied (getTarget() returns nullptr.) "
131 "TargetMachine. (missing call to Compiler::config()?)";
152 // This assert should never be reached as the compiler verifies that the
161 Compiler::Compiler() : mTarget(nullptr), mEnableOpt(true) {
165 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(nullptr),
179 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig)
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 39 // Design of Compiler
41 // 1. A compiler instance can be constructed provided an "initial config."
42 // 2. A compiler can later be re-configured using config().
47 // 4. Once a compiler instance is created, you can use the compile() service
50 class Compiler {
92 Compiler();
93 explicit Compiler(const CompilerConfig &pConfig);
110 ~Compiler();
  /prebuilts/go/darwin-x86/src/runtime/
compiler.go 7 // Compiler is the name of the compiler toolchain that built the
11 // gccgo The gccgo front end, part of the GCC compiler suite.
13 const Compiler = "gc"
  /prebuilts/go/linux-x86/src/runtime/
compiler.go 7 // Compiler is the name of the compiler toolchain that built the
11 // gccgo The gccgo front end, part of the GCC compiler suite.
13 const Compiler = "gc"
  /external/compiler-rt/lib/
Makefile.mk 3 # The LLVM Compiler Infrastructure
  /external/llvm/bindings/ocaml/all_backends/
llvm_all_backends.mli 3 * The LLVM Compiler Infrastructure
  /external/skia/src/gpu/gl/
GrGLContext.h 19 class Compiler;
72 * Extension of GrGLContextInfo that also provides access to GrGLInterface and SkSL::Compiler.
84 SkSL::Compiler* compiler() const;
93 mutable SkSL::Compiler* fCompiler;
  /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...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/include/shaderc/
shaderc.hpp 25 // A CompilationResult contains the compiler output, compilation status,
28 // The compiler output is stored as an array of elements and accessed
42 // compiler output.
161 // Sets the compiler mode to generate debug information in the output.
210 // Sets the compiler mode to suppress warnings. Note this option overrides
227 // Sets the compiler mode to make all warnings into errors. Note the
240 friend class Compiler;
244 class Compiler {
246 Compiler() : compiler_(shaderc_compiler_initialize()) {}
247 ~Compiler() { shaderc_compiler_release(compiler_);
    [all...]

Completed in 1753 milliseconds

1 2 3 4 5 6 7 8 91011>>