Home
last modified time | relevance | path

Searched refs:Interpreter (Results 1 – 25 of 83) sorted by relevance

1234

/external/v8/src/interpreter/
Dinterpreter.cc24 Interpreter::Interpreter(Isolate* isolate) in Interpreter() function in v8::internal::interpreter::Interpreter
29 Handle<FixedArray> Interpreter::CreateUninitializedInterpreterTable( in CreateUninitializedInterpreterTable()
41 void Interpreter::Initialize() { in Initialize()
62 bool Interpreter::MakeBytecode(CompilationInfo* info) { in MakeBytecode()
79 bool Interpreter::IsInterpreterTableInitialized( in IsInterpreterTableInitialized()
89 void Interpreter::DoLdaZero(compiler::InterpreterAssembler* assembler) { in DoLdaZero()
99 void Interpreter::DoLdaSmi8(compiler::InterpreterAssembler* assembler) { in DoLdaSmi8()
107 void Interpreter::DoLoadConstant(compiler::InterpreterAssembler* assembler) { in DoLoadConstant()
118 void Interpreter::DoLdaConstant(compiler::InterpreterAssembler* assembler) { in DoLdaConstant()
126 void Interpreter::DoLdaConstantWide(compiler::InterpreterAssembler* assembler) { in DoLdaConstantWide()
[all …]
Dinterpreter.h30 class Interpreter {
32 explicit Interpreter(Isolate* isolate);
33 virtual ~Interpreter() {} in ~Interpreter()
110 DISALLOW_COPY_AND_ASSIGN(Interpreter);
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTokenRewriteStream.java34 import org.antlr.tool.Interpreter;
50 Interpreter lexEngine = new Interpreter(g, input); in testInsertBeforeIndex0()
65 Interpreter lexEngine = new Interpreter(g, input); in testInsertAfterLastIndex()
80 Interpreter lexEngine = new Interpreter(g, input); in test2InsertBeforeAfterMiddleIndex()
97 Interpreter lexEngine = new Interpreter(g, input); in testReplaceIndex0()
113 Interpreter lexEngine = new Interpreter(g, input); in testReplaceLastIndex()
129 Interpreter lexEngine = new Interpreter(g, input); in testReplaceMiddleIndex()
150 Interpreter lexEngine = new Interpreter(g, input); in testToStringStartStop()
185 Interpreter lexEngine = new Interpreter(g, input); in testToStringStartStop2()
232 Interpreter lexEngine = new Interpreter(g, input); in test2ReplaceMiddleIndex()
[all …]
DTestInterpretedLexing.java35 import org.antlr.tool.Interpreter;
84 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a")); in testSimpleAltCharTest()
85 engine = new Interpreter(g, new ANTLRStringStream("b")); in testSimpleAltCharTest()
88 engine = new Interpreter(g, new ANTLRStringStream("c")); in testSimpleAltCharTest()
99 Interpreter engine = new Interpreter(g, new ANTLRStringStream("abc")); // should ignore the x in testSingleRuleRef()
110 Interpreter engine = new Interpreter(g, new ANTLRStringStream("12x")); // should ignore the x in testSimpleLoop()
113 engine = new Interpreter(g, new ANTLRStringStream("1234")); in testSimpleLoop()
123 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a")); in testMultAltLoop()
125 engine = new Interpreter(g, new ANTLRStringStream("a")); in testMultAltLoop()
128 engine = new Interpreter(g, new ANTLRStringStream("1234")); in testMultAltLoop()
[all …]
DTestInterpretedParsing.java34 import org.antlr.tool.Interpreter;
64 Interpreter lexEngine = new Interpreter(g, input); in testSimpleParse()
69 Interpreter parseEngine = new Interpreter(pg, tokens); in testSimpleParse()
99 Interpreter lexEngine = new Interpreter(g, input); in testMismatchedTokenError()
104 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedTokenError()
134 Interpreter lexEngine = new Interpreter(g, input); in testMismatchedSetError()
139 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedSetError()
169 Interpreter lexEngine = new Interpreter(g, input); in testNoViableAltError()
174 Interpreter parseEngine = new Interpreter(pg, tokens); in testNoViableAltError()
DTestCommonTokenStream.java33 import org.antlr.tool.Interpreter;
51 Interpreter lexEngine = new Interpreter(g, input); in testFirstToken()
72 Interpreter lexEngine = new Interpreter(g, input); in test2ndToken()
93 Interpreter lexEngine = new Interpreter(g, input); in testCompleteBuffer()
123 Interpreter lexEngine = new Interpreter(g, input); in testCompleteBufferAfterConsuming()
154 Interpreter lexEngine = new Interpreter(g, input); in testLookback()
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
DInterpreterConfiguration.java54 private final Set<Interpreter> mInterpreterSet;
67 private final Map<String, Interpreter> mmDiscoveredInterpreters;
73 mmDiscoveredInterpreters = new HashMap<String, Interpreter>(); in InterpreterListener()
120 Interpreter discoveredInterpreter = buildInterpreter(packageName); in addInterpreter()
137 Interpreter interpreter = mmDiscoveredInterpreters.get(packageName); in remove()
150 private Interpreter buildInterpreter(String packageName) { in buildInterpreter()
174 return Interpreter.buildFromMaps(interpreterMap, environmentMap, argumentsMap); in buildInterpreter()
216 mInterpreterSet = new CopyOnWriteArraySet<Interpreter>(); in InterpreterConfiguration()
257 public List<? extends Interpreter> getSupportedInterpreters() { in getSupportedInterpreters()
258 return new ArrayList<Interpreter>(mInterpreterSet); in getSupportedInterpreters()
[all …]
DInterpreter.java37 public class Interpreter implements InterpreterPropertyNames { class
50 public Interpreter() { in Interpreter() method in Interpreter
55 public static Interpreter buildFromMaps(Map<String, String> data, in buildFromMaps()
71 Interpreter interpreter = new Interpreter(); in buildFromMaps()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp26 RegisterInterp() { Interpreter::Register(); } in RegisterInterp()
35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M, in create()
45 return new Interpreter(std::move(M)); in create()
51 Interpreter::Interpreter(std::unique_ptr<Module> M) in Interpreter() function in Interpreter
63 Interpreter::~Interpreter() { in ~Interpreter()
67 void Interpreter::runAtExitHandlers () { in runAtExitHandlers()
77 GenericValue Interpreter::runFunction(Function *F, in runFunction()
DExecution.cpp278 void Interpreter::visitICmpInst(ICmpInst &I) { in visitICmpInst()
610 void Interpreter::visitFCmpInst(FCmpInst &I) { in visitFCmpInst()
681 void Interpreter::visitBinaryOperator(BinaryOperator &I) { in visitBinaryOperator()
806 void Interpreter::visitSelectInst(SelectInst &I) { in visitSelectInst()
820 void Interpreter::exitCalled(GenericValue GV) { in exitCalled()
837 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, in popStackAndReturnValueToCaller()
863 void Interpreter::visitReturnInst(ReturnInst &I) { in visitReturnInst()
877 void Interpreter::visitUnreachableInst(UnreachableInst &I) { in visitUnreachableInst()
881 void Interpreter::visitBranchInst(BranchInst &I) { in visitBranchInst()
894 void Interpreter::visitSwitchInst(SwitchInst &I) { in visitSwitchInst()
[all …]
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/Interpreter/LLVMBuild.txt ----------*- Conf -*--===;
20 name = Interpreter
DInterpreter.h95 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
108 explicit Interpreter(std::unique_ptr<Module> M);
109 ~Interpreter() override;
/external/llvm/tools/bugpoint/
DExecutionDriver.cpp160 if (!Interpreter) { in initializeExecutionEnvironment()
162 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
165 if (!Interpreter) { in initializeExecutionEnvironment()
167 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
171 if (!Interpreter) { in initializeExecutionEnvironment()
173 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
176 if (!Interpreter) { in initializeExecutionEnvironment()
182 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
188 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
194 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
[all …]
DBugDriver.h53 AbstractInterpreter *Interpreter; // How to run the program variable
150 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
151 Interpreter = (AbstractInterpreter*)SafeInterpreter; in switchToSafeInterpreter()
156 Interpreter = AI; in switchToInterpreter()
DBugDriver.cpp74 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), in BugDriver()
80 if (Interpreter != SafeInterpreter) in ~BugDriver()
81 delete Interpreter; in ~BugDriver()
/external/testng/src/main/java/org/testng/internal/
DBsh.java4 import bsh.Interpreter;
14 private static Interpreter s_interpreter;
20 Interpreter interpreter = getInterpreter(); in includeMethodFromExpression()
42 private static Interpreter getInterpreter() { in getInterpreter()
44 s_interpreter= new Interpreter(); in getInterpreter()
50 …private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestN… in setContext()
61 private void resetContext(Interpreter interpreter) { in resetContext()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DInterpreterPicker.java38 import com.googlecode.android_scripting.interpreter.Interpreter;
51 private List<Interpreter> mInterpreters;
71 final Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick()
126 Interpreter interpreter = mInterpreters.get(position); in getView()
DInterpreterManager.java47 import com.googlecode.android_scripting.interpreter.Interpreter;
59 private List<Interpreter> mInterpreters;
76 mInterpreters = new ArrayList<Interpreter>(); in onCreate()
173 private void launchTerminal(Interpreter interpreter) { in launchTerminal()
182 Interpreter interpreter = (Interpreter) list.getItemAtPosition(position); in onListItemClick()
235 Interpreter interpreter = mInterpreters.get(position); in getView()
DScriptManager.java58 import com.googlecode.android_scripting.interpreter.Interpreter;
83 private HashMap<Integer, Interpreter> mAddMenuIds;
294 mAddMenuIds = new LinkedHashMap<Integer, Interpreter>(); in buildMenuIdMaps()
296 List<Interpreter> installed = mConfiguration.getInstalledInterpreters(); in buildMenuIdMaps()
297 Collections.sort(installed, new Comparator<Interpreter>() { in buildMenuIdMaps()
299 public int compare(Interpreter interpreterA, Interpreter interpreterB) { in buildMenuIdMaps()
303 for (Interpreter interpreter : installed) { in buildMenuIdMaps()
314 for (Entry<Integer, Interpreter> entry : mAddMenuIds.entrySet()) { in buildAddMenu()
330 Interpreter interpreter = mAddMenuIds.get(itemId); in onOptionsItemSelected()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DInterp.java113 Interpreter lexEngine = new Interpreter(lexer, input); in main()
125 Interpreter parseEngine = new Interpreter(parser, tokens); in main()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
DInterpreterProcess.java37 private final Interpreter mInterpreter;
48 public InterpreterProcess(Interpreter interpreter, AndroidProxy proxy) { in InterpreterProcess()
69 public Interpreter getInterpreter() { in getInterpreter()
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/shell/
DShellInterpreter.java19 import com.googlecode.android_scripting.interpreter.Interpreter;
29 public class ShellInterpreter extends Interpreter {
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
DScriptStorageAdapter.java19 import com.googlecode.android_scripting.interpreter.Interpreter;
102 Interpreter interpreter = config.getInterpreterForScript(script.getName()); in listExecutableScripts()
127 Interpreter interpreter = config.getInterpreterForScript(file.getName()); in listExecutableScriptsRecursively()
DScriptProcess.java19 import com.googlecode.android_scripting.interpreter.Interpreter;
34 Interpreter interpreter = configuration.getInterpreterForScript(scriptName); in ScriptProcess()
DScriptLauncher.java24 import com.googlecode.android_scripting.interpreter.Interpreter;
38 Interpreter interpreter; in launchInterpreter()

1234