/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTokenRewriteStream.java | 34 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 …]
|
D | TestInterpretedLexing.java | 35 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 …]
|
D | TestInterpretedParsing.java | 34 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()
|
D | TestCommonTokenStream.java | 33 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/ |
D | Interpreter.cpp | 26 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()
|
D | Execution.cpp | 278 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 …]
|
D | LLVMBuild.txt | 1 ;===- ./lib/ExecutionEngine/Interpreter/LLVMBuild.txt ----------*- Conf -*--===; 20 name = Interpreter
|
D | Interpreter.h | 96 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { 110 explicit Interpreter(std::unique_ptr<Module> M); 111 ~Interpreter() override;
|
D | Android.mk | 10 Interpreter.cpp \
|
D | CMakeLists.txt | 12 Interpreter.cpp
|
/external/llvm/tools/bugpoint/ |
D | ExecutionDriver.cpp | 153 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 …]
|
D | BugDriver.h | 53 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()
|
D | BugDriver.cpp | 74 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/ |
D | Interp.java | 113 Interpreter lexEngine = new Interpreter(lexer, input); in main() 125 Interpreter parseEngine = new Interpreter(parser, tokens); in main()
|
/external/llvm/examples/HowToUseJIT/ |
D | CMakeLists.txt | 4 Interpreter
|
/external/llvm/examples/Fibonacci/ |
D | CMakeLists.txt | 4 Interpreter
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | asm-analysis-3.3.jar | META-INF/MANIFEST.MF
org/objectweb/asm/tree/analysis/Analyzer. ... |
/external/llvm/examples/ParallelJIT/ |
D | CMakeLists.txt | 4 Interpreter
|
/external/llvm/lib/ExecutionEngine/ |
D | Makefile | 14 PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
|
D | CMakeLists.txt | 14 add_subdirectory(Interpreter)
|
D | LLVMBuild.txt | 19 subdirectories = Interpreter MCJIT RuntimeDyld IntelJITEvents OProfileJIT Orc
|
/external/lldb/ |
D | Android.mk | 20 source/Interpreter \
|
/external/llvm/unittests/ExecutionEngine/ |
D | CMakeLists.txt | 4 Interpreter
|
/external/llvm/tools/lli/ |
D | CMakeLists.txt | 9 Interpreter
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
D | Interpreter.java | 47 public interface Interpreter { interface
|