/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | REPL.cpp | 1 //===-- 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 D | REPL.h | 22 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 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. 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 D | Options.td | 65 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 D | ClangREPL.h | 17 class ClangREPL : public llvm::RTTIExtends<ClangREPL, REPL> {
|
H A D | ClangREPL.cpp | 21 : llvm::RTTIExtends<ClangREPL, REPL>(target), m_language(language), in ClangREPL()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | InterpreterProperties.td | 34 Desc<"If true, blank lines will be printed between between REPL submissions.">;
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | CoreProperties.td | 89 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 D | PluginManager.cpp | 1508 #pragma mark REPL
|
H A D | Debugger.cpp | 2216 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-forward.h | 177 class REPL; variable 398 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | IOHandler.h | 51 REPL, enumerator
|
H A D | Debugger.h | 601 friend class REPL; variable
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectExpression.cpp | 618 IOHandler::Type::REPL)) { in DoExecute()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | mailprio | 223 # REPL-LIB --------------------------------------------------------------- 528 # REPL-LIB ---------------------------------------------------------------
|
/freebsd/contrib/llvm-project/ |
H A D | FREEBSD-Xlist | 449 lldb/source/Plugins/REPL/CMakeLists.txt 450 lldb/source/Plugins/REPL/Clang/CMakeLists.txt
|
/freebsd/lib/clang/liblldb/ |
H A D | Makefile | 243 SRCS+= Expression/REPL.cpp
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Target.cpp | 258 lldb::REPLSP ret = REPL::Create(err, language, debugger, this, repl_options); in GetREPL()
|