/external/llvm-project/lldb/source/Expression/ |
D | REPL.cpp | 25 REPL::REPL(LLVMCastKind kind, Target &target) : m_target(target), m_kind(kind) { in REPL() function in REPL 33 REPL::~REPL() = default; 35 lldb::REPLSP REPL::Create(Status &err, lldb::LanguageType language, in Create() 52 std::string REPL::GetSourcePath() { in GetSourcePath() 66 lldb::IOHandlerSP REPL::GetIOHandler() { in GetIOHandler() 70 debugger, IOHandler::Type::REPL, in GetIOHandler() 95 void REPL::IOHandlerActivated(IOHandler &io_handler, bool interactive) { in IOHandlerActivated() 104 bool REPL::IOHandlerInterrupt(IOHandler &io_handler) { return false; } in IOHandlerInterrupt() 106 void REPL::IOHandlerInputInterrupted(IOHandler &io_handler, std::string &line) { in IOHandlerInputInterrupted() 109 const char *REPL::IOHandlerGetFixIndentationCharacters() { in IOHandlerGetFixIndentationCharacters() [all …]
|
D | CMakeLists.txt | 12 REPL.cpp
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_info_opcodes.h | 4 OPCODE(1, 1, REPL, RCP) 5 OPCODE(1, 1, REPL, RSQ) 10 OPCODE(1, 2, REPL, DP3) 11 OPCODE(1, 2, REPL, DP4) 21 OPCODE(1, 1, REPL, SQRT) 29 OPCODE(1, 1, REPL, EX2) 30 OPCODE(1, 1, REPL, LG2) 31 OPCODE(1, 2, REPL, POW) 37 OPCODE(1, 1, REPL, COS) 41 OPCODE(1, 1, REPL, PK2H) [all …]
|
D | tgsi_info.c | 34 #define REPL TGSI_OUTPUT_REPLICATE macro
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_info.c | 34 #define REPL TGSI_OUTPUT_REPLICATE macro 43 { 1, 1, 0, 0, 0, 0, REPL, "RCP", TGSI_OPCODE_RCP }, 44 { 1, 1, 0, 0, 0, 0, REPL, "RSQ", TGSI_OPCODE_RSQ }, 49 { 1, 2, 0, 0, 0, 0, REPL, "DP3", TGSI_OPCODE_DP3 }, 50 { 1, 2, 0, 0, 0, 0, REPL, "DP4", TGSI_OPCODE_DP4 }, 60 { 1, 1, 0, 0, 0, 0, REPL, "SQRT", TGSI_OPCODE_SQRT }, 61 { 1, 3, 0, 0, 0, 0, REPL, "", 21 }, /* removed */ 68 { 1, 1, 0, 0, 0, 0, REPL, "EX2", TGSI_OPCODE_EX2 }, 69 { 1, 1, 0, 0, 0, 0, REPL, "LG2", TGSI_OPCODE_LG2 }, 70 { 1, 2, 0, 0, 0, 0, REPL, "POW", TGSI_OPCODE_POW }, [all …]
|
/external/llvm-project/lldb/include/lldb/Expression/ |
D | REPL.h | 21 class REPL : public IOHandlerDelegate { 28 REPL(LLVMCastKind kind, Target &target); 30 ~REPL() override;
|
/external/llvm-project/lldb/docs/man/ |
D | lldb.rst | 211 REPL chapter 220 Chooses the language for the REPL. 224 Runs lldb in REPL mode with a stub process with the given flags. 271 Passing --repl starts :program:`lldb` in REPL mode. 287 Note: In REPL mode no file is loaded, so commands specified to run after 313 If launched with a `REPL`_ option, it will first look for a REPL configuration 314 file, specific to the REPL language. The init file should be named as follow: 316 exist, or :program:`lldb` wasn't launch with `REPL`_, meaning there is neither 317 a REPL init file nor an application specific init file, `lldb` will fallback to
|
/external/llvm-project/lldb/test/Shell/Driver/ |
D | TestRepl.test | 4 # CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL …
|
D | TestHelp.test | 56 CHECK: REPL
|
/external/llvm-project/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 50 Kaleidoscope REPL from `Chapter 7 <LangImpl07.html>`_ of the "Implementing a 95 the REPL code from `Chapter 7 <LangImpl07.html>`_ of that tutorial to supply the 96 input for our JIT: Each time the user enters an expression the REPL will add a 98 expression is a top-level expression like '1+1' or 'sin(x)', the REPL will also 100 expression. In later chapters of this tutorial we will modify the REPL to enable 181 REPL process as well. We do this by attaching a 217 managed by the JIT (especially the LLVMContext) available to the REPL code that 290 impossible to re-define symbols in the REPL, but will make our symbol
|
/external/llvm-project/lldb/tools/driver/ |
D | Options.td | 61 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">; 64 HelpText<"Runs lldb in REPL mode with a stub process.">, 72 HelpText<"Runs lldb in REPL mode with a stub process with the given flags.">, 82 HelpText<"Chooses the language for the REPL.">,
|
/external/timezone-boundary-builder/ |
D | .gitignore | 33 # Optional REPL history
|
/external/starlark-go/cmd/starlark/ |
D | starlark.go | 119 repl.REPL(thread, globals)
|
/external/llvm-project/lldb/source/Interpreter/ |
D | InterpreterProperties.td | 23 Desc<"If true, blank lines will be printed between between REPL submissions.">;
|
/external/llvm-project/llvm/test/Transforms/Scalarizer/ |
D | constant-insertelement.ll | 18 ; ALL-NEXT: [[VAL2_I3:%.*]] = shl i32 4, [[REPL:%.*]]
|
/external/starlark-go/repl/ |
D | repl.go | 37 func REPL(thread *starlark.Thread, globals starlark.StringDict) { func
|
/external/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 43 To provide input for our JIT we will use the Kaleidoscope REPL from 95 the REPL code from `Chapter 7 <LangImpl7.html>`_ of that tutorial to supply the 96 input for our JIT: Each time the user enters an expression the REPL will add a 98 expression is a top-level expression like '1+1' or 'sin(x)', the REPL will also 102 of this tutorial we'll modify the REPL to enable new interactions with our JIT 338 impossible to re-define symbols in the REPL, but will make our symbol
|
D | BuildingAJIT5.rst | 28 KaleidoscopeJIT class, and the REPL itself.**
|
/external/bcc/tools/ |
D | cobjnew_example.txt | 10 in irb (the Ruby REPL):
|
D | javaobjnew_example.txt | 10 in irb (the Ruby REPL):
|
D | rubyobjnew_example.txt | 10 in irb (the Ruby REPL):
|
D | tclobjnew_example.txt | 10 in irb (the Ruby REPL):
|
/external/python/cpython3/Tools/c-analyzer/ |
D | README | 8 * globals used exclusively in main or in the REPL
|
/external/bcc/tools/lib/ |
D | uobjnew_example.txt | 10 in irb (the Ruby REPL):
|
/external/llvm-project/lldb/include/lldb/ |
D | module.modulemap | 102 exclude header "Expression/REPL.h"
|