Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
HDREPL.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 …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDREPL.h21 class REPL : public IOHandlerDelegate {
28 REPL(LLVMCastKind kind, Target &target);
30 ~REPL() override;
/freebsd-11-stable/contrib/llvm-project/lldb/docs/man/
HDlldb.rst211 REPL chapter
220 Chooses the language for the REPL.
224 Runs lldb in REPL mode with a stub process with the given flags.
266 Passing --repl starts :program:`lldb` in REPL mode.
282 Note: In REPL mode no file is loaded, so commands specified to run after
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
HDOptions.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.">,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDInterpreterProperties.td19 Desc<"If true, blank lines will be printed between between REPL submissions.">;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDCoreProperties.td101 …Desc<"If true, LLDB will auto indent/outdent code. Currently only supported in the REPL (default: …
105 …es of variables declared in an expression. Currently only supported in the REPL (default: true).">;
HDDebugger.cpp1617 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL()
HDPluginManager.cpp2184 #pragma mark REPL
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
HDmodule.modulemap98 exclude header "Expression/REPL.h"
HDlldb-forward.h182 class REPL; variable
399 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDDebugger.h334 friend class REPL; variable
HDIOHandler.h52 REPL, enumerator
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectExpression.cpp593 IOHandler::Type::REPL)) { in DoExecute()
/freebsd-11-stable/contrib/sendmail/contrib/
HDmailprio223 # REPL-LIB ---------------------------------------------------------------
528 # REPL-LIB ---------------------------------------------------------------
/freebsd-11-stable/lib/clang/liblldb/
HDMakefile209 SRCS+= Expression/REPL.cpp
/freebsd-11-stable/contrib/gcc/config/mips/
HDmips-dsp.md684 ;; REPL*
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDTarget.cpp238 lldb::REPLSP ret = REPL::Create(err, language, debugger, this, repl_options); in GetREPL()