Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp1 //===-- REPL.cpp ----------------------------------------------------------===//
9 #include "lldb/Expression/REPL.h"
25 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
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h22 class REPL : public IOHandlerDelegate,
23 public llvm::RTTIExtends<REPL, llvm::RTTIRoot> {
28 REPL(Target &target);
30 ~REPL() override;
/freebsd/contrib/llvm-project/lldb/docs/man/
H A 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.
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/contrib/llvm-project/lldb/tools/driver/
H A DOptions.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/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.h17 class ClangREPL : public llvm::RTTIExtends<ClangREPL, REPL> {
H A DClangREPL.cpp21 : llvm::RTTIExtends<ClangREPL, REPL>(target), m_language(language), in ClangREPL()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DInterpreterProperties.td34 Desc<"If true, blank lines will be printed between between REPL submissions.">;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DCoreProperties.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).">;
H A DPluginManager.cpp1508 #pragma mark REPL
H A DDebugger.cpp2216 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h177 class REPL; variable
398 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h51 REPL, enumerator
H A DDebugger.h601 friend class REPL; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp618 IOHandler::Type::REPL)) { in DoExecute()
/freebsd/contrib/sendmail/contrib/
H A Dmailprio223 # REPL-LIB ---------------------------------------------------------------
528 # REPL-LIB ---------------------------------------------------------------
/freebsd/contrib/llvm-project/
H A DFREEBSD-Xlist449 lldb/source/Plugins/REPL/CMakeLists.txt
450 lldb/source/Plugins/REPL/Clang/CMakeLists.txt
/freebsd/lib/clang/liblldb/
H A DMakefile243 SRCS+= Expression/REPL.cpp
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp258 lldb::REPLSP ret = REPL::Create(err, language, debugger, this, repl_options); in GetREPL()