/external/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.cpp | 1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===// 16 #include "Interpreter.h" 26 RegisterInterp() { Interpreter::Register(); } 35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M, 45 return new Interpreter(std::move(M)); 49 // Interpreter ctor - Initialize stuff 51 Interpreter::Interpreter(std::unique_ptr<Module> M) function in class:Interpreter 63 Interpreter [all...] |
H A D | Android.mk | 10 Interpreter.cpp \
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
H A D | TestInterpretedLexing.java | 35 import org.antlr.tool.Interpreter; 84 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a")); 85 engine = new Interpreter(g, new ANTLRStringStream("b")); 88 engine = new Interpreter(g, new ANTLRStringStream("c")); 99 Interpreter engine = new Interpreter(g, new ANTLRStringStream("abc")); // should ignore the x 110 Interpreter engine = new Interpreter(g, new ANTLRStringStream("12x")); // should ignore the x 113 engine = new Interpreter( [all...] |
H A D | TestInterpretedParsing.java | 34 import org.antlr.tool.Interpreter; 64 Interpreter lexEngine = new Interpreter(g, input); 69 Interpreter parseEngine = new Interpreter(pg, tokens); 99 Interpreter lexEngine = new Interpreter(g, input); 104 Interpreter parseEngine = new Interpreter(pg, tokens); 134 Interpreter lexEngin [all...] |
H A D | TestTokenRewriteStream.java | 34 import org.antlr.tool.Interpreter; 50 Interpreter lexEngine = new Interpreter(g, input); 65 Interpreter lexEngine = new Interpreter(g, input); 80 Interpreter lexEngine = new Interpreter(g, input); 97 Interpreter lexEngine = new Interpreter(g, input); 113 Interpreter lexEngin [all...] |
H A D | TestCommonTokenStream.java | 33 import org.antlr.tool.Interpreter; 51 Interpreter lexEngine = new Interpreter(g, input); 72 Interpreter lexEngine = new Interpreter(g, input); 93 Interpreter lexEngine = new Interpreter(g, input); 123 Interpreter lexEngine = new Interpreter(g, input); 154 Interpreter lexEngin [all...] |
/external/testng/src/main/java/org/testng/internal/ |
H A D | Bsh.java | 4 import bsh.Interpreter; 14 private static Interpreter s_interpreter; 20 Interpreter interpreter = getInterpreter(); 31 Utils.log("bsh.Interpreter", 2, "Cannot evaluate expression:" 42 private static Interpreter getInterpreter() { 44 s_interpreter= new Interpreter(); 50 private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestNGMethod tm) { 61 private void resetContext(Interpreter interpreter) { 68 Utils.log("bsh.Interpreter", 2, "Cannot reset interpreter:" + evalError.getMessage());
|
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/shell/ |
H A D | ShellInterpreter.java | 19 import com.googlecode.android_scripting.interpreter.Interpreter; 28 public class ShellInterpreter extends Interpreter {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/ |
H A D | InterpreterConfiguration.java | 53 private final Set<Interpreter> mInterpreterSet; 66 private final Map<String, Interpreter> mmDiscoveredInterpreters; 72 mmDiscoveredInterpreters = new HashMap<String, Interpreter>(); 119 Interpreter discoveredInterpreter = buildInterpreter(packageName); 125 Log.v("Interpreter discovered: " + packageName + "\nBinary: " 136 Interpreter interpreter = mmDiscoveredInterpreters.get(packageName); 138 Log.v("Interpreter for " + packageName + " not installed."); 149 private Interpreter buildInterpreter(String packageName) { 173 return Interpreter.buildFromMaps(interpreterMap, environmentMap, argumentsMap); 215 mInterpreterSet = new CopyOnWriteArraySet<Interpreter>(); [all...] |
H A D | Interpreter.java | 35 public class Interpreter implements InterpreterPropertyNames { class in inherits:InterpreterPropertyNames 48 public Interpreter() { method in class:Interpreter 53 public static Interpreter buildFromMaps(Map<String, String> data, 69 Interpreter interpreter = new Interpreter();
|
/external/llvm/lib/ExecutionEngine/ |
H A D | Makefile | 14 PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
|
/external/v8/src/interpreter/ |
H A D | interpreter.cc | 30 Interpreter::Interpreter(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::interpreter::Interpreter 34 void Interpreter::Initialize() { 87 Code* Interpreter::GetBytecodeHandler(Bytecode bytecode, 97 size_t Interpreter::GetDispatchTableIndex(Bytecode bytecode, 113 void Interpreter::IterateDispatchTable(ObjectVisitor* v) { 128 int Interpreter::InterruptBudget() { 134 bool Interpreter::MakeBytecode(CompilationInfo* info) { 181 bool Interpreter::IsDispatchTableInitialized() { 191 void Interpreter [all...] |
H A D | interpreter.h | 32 class Interpreter { class in namespace:v8::internal::interpreter 34 explicit Interpreter(Isolate* isolate); 35 virtual ~Interpreter() {} 167 DISALLOW_COPY_AND_ASSIGN(Interpreter);
|
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/ |
H A D | ScriptProcess.java | 19 import com.googlecode.android_scripting.interpreter.Interpreter; 34 Interpreter interpreter = configuration.getInterpreterForScript(scriptName);
|
H A D | ScriptLauncher.java | 24 import com.googlecode.android_scripting.interpreter.Interpreter; 38 Interpreter interpreter;
|
H A D | ScriptStorageAdapter.java | 19 import com.googlecode.android_scripting.interpreter.Interpreter; 101 Interpreter interpreter = config.getInterpreterForScript(script.getName()); 126 Interpreter interpreter = config.getInterpreterForScript(file.getName());
|
/external/llvm/tools/bugpoint/ |
H A D | ExecutionDriver.cpp | 160 if (!Interpreter) { 162 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, 165 if (!Interpreter) { 167 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, 171 if (!Interpreter) { 173 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, 176 if (!Interpreter) { 182 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, 188 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, 194 Interpreter [all...] |
H A D | BugDriver.cpp | 74 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), 80 if (Interpreter != SafeInterpreter) 81 delete Interpreter;
|
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/ |
H A D | InterpreterProcess.java | 36 private final Interpreter mInterpreter; 47 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) { 68 public Interpreter getInterpreter() {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
H A D | Interp.java | 113 Interpreter lexEngine = new Interpreter(lexer, input); 125 Interpreter parseEngine = new Interpreter(parser, tokens);
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
H A D | InterpreterPicker.java | 38 import com.googlecode.android_scripting.interpreter.Interpreter; 50 private List<Interpreter> mInterpreters; 70 final Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); 125 Interpreter interpreter = mInterpreters.get(position);
|
H A D | InterpreterManager.java | 47 import com.googlecode.android_scripting.interpreter.Interpreter; 59 private List<Interpreter> mInterpreters; 76 mInterpreters = new ArrayList<Interpreter>(); 173 private void launchTerminal(Interpreter interpreter) { 182 Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); 235 Interpreter interpreter = mInterpreters.get(position);
|
/external/lldb/source/ |
H A D | Makefile | 11 DIRS := API Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
H A D | Interpreter.java | 47 public interface Interpreter {
interface
|
/external/lldb/ |
H A D | Android.mk | 20 source/Interpreter \
|