Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
HDREPL.cpp25 char REPL::ID;
27 REPL::REPL(Target &target) : m_target(target) { in REPL() function in REPL
36 REPL::~REPL() = default;
38 lldb::REPLSP REPL::Create(Status &err, lldb::LanguageType language, in Create()
59 std::string REPL::GetSourcePath() { in GetSourcePath()
73 lldb::IOHandlerSP REPL::GetIOHandler() { in GetIOHandler()
77 debugger, IOHandler::Type::REPL, in GetIOHandler()
102 void REPL::IOHandlerActivated(IOHandler &io_handler, bool interactive) { in IOHandlerActivated()
111 bool REPL::IOHandlerInterrupt(IOHandler &io_handler) { return false; } in IOHandlerInterrupt()
113 void REPL::IOHandlerInputInterrupted(IOHandler &io_handler, std::string &line) { in IOHandlerInputInterrupted()
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDREPL.h22 class REPL : public IOHandlerDelegate,
23 public llvm::RTTIExtends<REPL, llvm::RTTIRoot> {
28 REPL(Target &target);
30 ~REPL() override;
/freebsd-13-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.
275 Passing --repl starts :program:`lldb` in REPL mode.
291 Note: In REPL mode no file is loaded, so commands specified to run after
317 If launched with a `REPL`_ option, it will first look for a REPL configuration
318 file, specific to the REPL language. The init file should be named as follow:
320 exist, or :program:`lldb` wasn't launch with `REPL`_, meaning there is neither
321 a REPL init file nor an application specific init file, ``lldb`` will fallback to
/freebsd-13-stable/contrib/llvm-project/lldb/tools/driver/
HDOptions.td65 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">;
68 HelpText<"Runs lldb in REPL mode with a stub process.">,
76 HelpText<"Runs lldb in REPL mode with a stub process with the given flags.">,
86 HelpText<"Chooses the language for the REPL.">,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/
HDClangREPL.h17 class ClangREPL : public llvm::RTTIExtends<ClangREPL, REPL> {
HDClangREPL.cpp21 : llvm::RTTIExtends<ClangREPL, REPL>(target), m_language(language), in ClangREPL()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
HDInterpreterProperties.td34 Desc<"If true, blank lines will be printed between between REPL submissions.">;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
HDCoreProperties.td89 Desc<"The language to use for the REPL.">;
182 …Desc<"If true, LLDB will auto indent/outdent code. Currently only supported in the REPL (default: …
186 …es of variables declared in an expression. Currently only supported in the REPL (default: true).">;
HDPluginManager.cpp1508 #pragma mark REPL
HDDebugger.cpp2216 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
HDlldb-forward.h177 class REPL; variable
398 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDIOHandler.h51 REPL, enumerator
HDDebugger.h601 friend class REPL; variable
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectExpression.cpp618 IOHandler::Type::REPL)) { in DoExecute()
/freebsd-13-stable/contrib/sendmail/contrib/
HDmailprio223 # REPL-LIB ---------------------------------------------------------------
528 # REPL-LIB ---------------------------------------------------------------
/freebsd-13-stable/contrib/llvm-project/
HDFREEBSD-Xlist449 lldb/source/Plugins/REPL/CMakeLists.txt
450 lldb/source/Plugins/REPL/Clang/CMakeLists.txt
/freebsd-13-stable/lib/clang/liblldb/
HDMakefile244 SRCS+= Expression/REPL.cpp
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDTarget.cpp258 lldb::REPLSP ret = REPL::Create(err, language, debugger, this, repl_options); in GetREPL()