Home
last modified time | relevance | path

Searched refs:REPL (Results 1 – 25 of 57) sorted by relevance

123

/external/llvm-project/lldb/source/Expression/
DREPL.cpp25 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 …]
DCMakeLists.txt12 REPL.cpp
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info_opcodes.h4 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 …]
Dtgsi_info.c34 #define REPL TGSI_OUTPUT_REPLICATE macro
/external/virglrenderer/src/gallium/auxiliary/tgsi/
Dtgsi_info.c34 #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/
DREPL.h21 class REPL : public IOHandlerDelegate {
28 REPL(LLVMCastKind kind, Target &target);
30 ~REPL() override;
/external/llvm-project/lldb/docs/man/
Dlldb.rst211 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/
DTestRepl.test4 # CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL
DTestHelp.test56 CHECK: REPL
/external/llvm-project/llvm/docs/tutorial/
DBuildingAJIT1.rst50 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/
DOptions.td61 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.gitignore33 # Optional REPL history
/external/starlark-go/cmd/starlark/
Dstarlark.go119 repl.REPL(thread, globals)
/external/llvm-project/lldb/source/Interpreter/
DInterpreterProperties.td23 Desc<"If true, blank lines will be printed between between REPL submissions.">;
/external/llvm-project/llvm/test/Transforms/Scalarizer/
Dconstant-insertelement.ll18 ; ALL-NEXT: [[VAL2_I3:%.*]] = shl i32 4, [[REPL:%.*]]
/external/starlark-go/repl/
Drepl.go37 func REPL(thread *starlark.Thread, globals starlark.StringDict) { func
/external/llvm/docs/tutorial/
DBuildingAJIT1.rst43 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
DBuildingAJIT5.rst28 KaleidoscopeJIT class, and the REPL itself.**
/external/bcc/tools/
Dcobjnew_example.txt10 in irb (the Ruby REPL):
Djavaobjnew_example.txt10 in irb (the Ruby REPL):
Drubyobjnew_example.txt10 in irb (the Ruby REPL):
Dtclobjnew_example.txt10 in irb (the Ruby REPL):
/external/python/cpython3/Tools/c-analyzer/
DREADME8 * globals used exclusively in main or in the REPL
/external/bcc/tools/lib/
Duobjnew_example.txt10 in irb (the Ruby REPL):
/external/llvm-project/lldb/include/lldb/
Dmodule.modulemap102 exclude header "Expression/REPL.h"

123