Home
last modified time | relevance | path

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

123

/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/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
64 Interpreter::~Interpreter() { in ~Interpreter()
68 void Interpreter::runAtExitHandlers () { in runAtExitHandlers()
79 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.h96 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
110 explicit Interpreter(std::unique_ptr<Module> M);
111 ~Interpreter() override;
DAndroid.mk10 Interpreter.cpp \
DCMakeLists.txt12 Interpreter.cpp
/external/llvm/tools/bugpoint/
DExecutionDriver.cpp153 if (!Interpreter) { in initializeExecutionEnvironment()
155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
158 if (!Interpreter) { in initializeExecutionEnvironment()
160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
164 if (!Interpreter) { in initializeExecutionEnvironment()
166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
169 if (!Interpreter) { in initializeExecutionEnvironment()
175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
187 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/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/llvm/examples/HowToUseJIT/
DCMakeLists.txt4 Interpreter
/external/llvm/examples/Fibonacci/
DCMakeLists.txt4 Interpreter
/external/owasp/sanitizer/tools/findbugs/lib/
Dasm-analysis-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/tree/analysis/Analyzer. ...
/external/llvm/examples/ParallelJIT/
DCMakeLists.txt4 Interpreter
/external/llvm/lib/ExecutionEngine/
DMakefile14 PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
DCMakeLists.txt14 add_subdirectory(Interpreter)
DLLVMBuild.txt19 subdirectories = Interpreter MCJIT RuntimeDyld IntelJITEvents OProfileJIT Orc
/external/lldb/
DAndroid.mk20 source/Interpreter \
/external/llvm/unittests/ExecutionEngine/
DCMakeLists.txt4 Interpreter
/external/llvm/tools/lli/
DCMakeLists.txt9 Interpreter
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DInterpreter.java47 public interface Interpreter { interface

123