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

1 2 3

  /external/v8/src/interpreter/
interpreter.h 8 // Clients of this interface shouldn't depend on lots of interpreter internals.
9 // Do not include anything from src/interpreter other than
10 // src/interpreter/bytecodes.h here!
13 #include "src/interpreter/bytecodes.h"
28 namespace interpreter { namespace in namespace:v8::internal
30 class Interpreter {
32 explicit Interpreter(Isolate* isolate);
33 virtual ~Interpreter() {}
35 // Creates an uninitialized interpreter handler table, where each handler
40 // Initializes the interpreter
    [all...]
interpreter.cc 5 #include "src/interpreter/interpreter.h"
9 #include "src/compiler/interpreter-assembler.h"
11 #include "src/interpreter/bytecode-generator.h"
12 #include "src/interpreter/bytecodes.h"
17 namespace interpreter { namespace in namespace:v8::internal
24 Interpreter::Interpreter(Isolate* isolate)
29 Handle<FixedArray> Interpreter::CreateUninitializedInterpreterTable(
33 // We rely on the interpreter handler table being immovable, so check tha
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===//
10 // This file implements the top-level functionality for the LLVM interpreter.
11 // This interpreter is designed to be a very simple, portable, inefficient
12 // interpreter.
16 #include "Interpreter.h"
26 RegisterInterp() { Interpreter::Register(); }
33 /// Create a new interpreter object.
35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M,
45 return new Interpreter(std::move(M))
    [all...]
Interpreter.h 1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===//
10 // This header file defines the interpreter structure
93 // Interpreter - This class represents the entirety of the interpreter.
95 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
108 explicit Interpreter(std::unique_ptr<Module> M);
109 ~Interpreter() override;
120 /// Create an interpreter ExecutionEngine.
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Interpreter.java 38 * A semantic bytecode interpreter. More precisely, this interpreter only
47 public interface Interpreter {
  /external/llvm/tools/bugpoint/
BugDriver.h 53 AbstractInterpreter *Interpreter; // How to run the program
150 AbstractInterpreter *Old = Interpreter;
151 Interpreter = (AbstractInterpreter*)SafeInterpreter;
156 Interpreter = AI;
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
Interpreter.java 17 package com.googlecode.android_scripting.interpreter;
31 * Combines all the execution-related specs of a particular interpreter installed in the system.
37 public class Interpreter implements InterpreterPropertyNames {
50 public Interpreter() {
55 public static Interpreter buildFromMaps(Map<String, String> data,
67 // Default to true so that older interpreter APKs that don't have this value define still
71 Interpreter interpreter = new Interpreter(); local
72 interpreter.setName(name)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 42 /** The recognition interpreter/engine for grammars. Separated
44 * You create an interpreter for a grammar and an input stream. This object
49 public class Interpreter implements TokenSource {
74 public Interpreter(Grammar grammar, IntStream input) {
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 96 /// designed to support both interpreter and just-in-time (JIT) compiler
355 /// This function should not be called with the interpreter engine.
357 // Default implementation for the interpreter. MCJIT will override this.
358 // JIT and interpreter clients should use getPointerToGlobal instead.
365 // Default implementation for the interpreter. MCJIT will override this.
366 // Interpreter clients should use getPointerToFunction instead.
402 /// not changed. Supported by MCJIT but not the interpreter.
504 Interpreter = 0x2
506 const static Kind Either = (Kind)(JIT | Interpreter);
539 /// setEngineKind - Controls whether the user wants the interpreter, the JIT
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.cpp     [all...]
qcamera_test.h 235 class Interpreter
272 Interpreter()
276 Interpreter(const char *file);
277 ~Interpreter();
304 friend class Interpreter;
320 Interpreter *mInterpreter;
  /hardware/qcom/camera/QCamera2/HAL/test/
qcamera_test.cpp     [all...]
qcamera_test.h 228 class Interpreter
266 Interpreter()
270 Interpreter(const char *file);
271 ~Interpreter();
297 friend class Interpreter;
318 Interpreter *mInterpreter;
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-analysis-3.3.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-analysis/3.3.1/
asm-analysis-3.3.1.jar 
  /prebuilts/devtools/tools/lib/
asm-analysis-4.0.jar 
asm-analysis-5.0.3.jar 
  /prebuilts/tools/common/asm-tools/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/4.0/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/5.0.1/
asm-analysis-5.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/5.0.3/
asm-analysis-5.0.3.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/5.0.4/
asm-analysis-5.0.4.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-analysis/4.0/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-analysis/5.0.3/
asm-analysis-5.0.3.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-analysis/5.0.4/
asm-analysis-5.0.4.jar 

Completed in 568 milliseconds

1 2 3