/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectMultiword.cpp | 1 //===-- CommandObjectMultiword.cpp ----------------------------------------===// 9 #include "lldb/Interpreter/CommandObjectMultiword.h" 18 // CommandObjectMultiword 20 CommandObjectMultiword::CommandObjectMultiword(CommandInterpreter &interpreter, in CommandObjectMultiword() function in CommandObjectMultiword 28 CommandObjectMultiword::~CommandObjectMultiword() = default; 31 CommandObjectMultiword::GetSubcommandSPExact(llvm::StringRef sub_cmd) { in GetSubcommandSPExact() 42 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() 76 CommandObjectMultiword [all...] |
H A D | CommandObjectLanguage.cpp | 19 : CommandObjectMultiword( in CommandObjectLanguage()
|
H A D | CommandObjectSession.h | 16 class CommandObjectSession : public CommandObjectMultiword {
|
H A D | CommandObjectSource.h | 16 class CommandObjectMultiwordSource : public CommandObjectMultiword {
|
H A D | CommandObjectBreakpointCommand.h | 18 class CommandObjectBreakpointCommand : public CommandObjectMultiword {
|
H A D | CommandObjectCommands.h | 19 class CommandObjectMultiwordCommands : public CommandObjectMultiword {
|
H A D | CommandObjectThread.h | 16 class CommandObjectMultiwordThread : public CommandObjectMultiword {
|
H A D | CommandObjectProcess.h | 18 class CommandObjectMultiwordProcess : public CommandObjectMultiword {
|
H A D | CommandObjectMemoryTag.h | 16 class CommandObjectMemoryTag : public CommandObjectMultiword {
|
H A D | CommandObjectWatchpointCommand.h | 18 class CommandObjectWatchpointCommand : public CommandObjectMultiword {
|
H A D | CommandObjectStats.h | 15 class CommandObjectStats : public CommandObjectMultiword {
|
H A D | CommandObjectTarget.h | 18 class CommandObjectMultiwordTarget : public CommandObjectMultiword {
|
H A D | CommandObjectScripting.h | 16 class CommandObjectMultiwordScripting : public CommandObjectMultiword {
|
H A D | CommandObjectSettings.h | 18 class CommandObjectMultiwordSettings : public CommandObjectMultiword {
|
H A D | CommandObjectPlugin.h | 16 class CommandObjectPlugin : public CommandObjectMultiword {
|
H A D | CommandObjectMemory.h | 16 class CommandObjectMemory : public CommandObjectMultiword {
|
H A D | CommandObjectFrame.h | 18 class CommandObjectMultiwordFrame : public CommandObjectMultiword {
|
H A D | CommandObjectType.h | 16 class CommandObjectType : public CommandObjectMultiword {
|
H A D | CommandObjectLanguage.h | 15 class CommandObjectLanguage : public CommandObjectMultiword {
|
H A D | CommandObjectLog.h | 18 class CommandObjectLog : public CommandObjectMultiword {
|
H A D | CommandObjectRegister.h | 18 class CommandObjectRegister : public CommandObjectMultiword {
|
H A D | CommandObjectDiagnostics.h | 16 class CommandObjectDiagnostics : public CommandObjectMultiword {
|
/llvm-project/lldb/unittests/Interpreter/ |
H A D | TestCommandPaths.cpp | 57 class CommandObjectMultiwordSubDummy : public CommandObjectMultiword { 60 : CommandObjectMultiword(interpreter, "dummy subcommand", "Does nothing", in CommandObjectMultiwordSubDummy() 69 class CommandObjectMultiwordDummy : public CommandObjectMultiword { 72 : CommandObjectMultiword(interpreter, "dummy", "Does nothing", "dummy") { in CommandObjectMultiwordDummy() 87 CommandObjectMultiword *multi_word_cmd = nullptr; in RunTest()
|
/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandObjectMultiword.h | 1 //===-- CommandObjectMultiword.h --------------------------------*- C++ -*-===// 18 // CommandObjectMultiword 20 class CommandObjectMultiword : public CommandObject { 26 CommandObjectMultiword(CommandInterpreter &interpreter, const char *name, 30 ~CommandObjectMultiword() override; 34 CommandObjectMultiword *GetAsMultiwordCommand() override { return this; } in GetAsMultiwordCommand() 101 CommandObjectMultiword *GetAsMultiwordCommand() override;
|
/llvm-project/lldb/source/Target/ |
H A D | StructuredDataPlugin.cpp | 13 #include "lldb/Interpreter/CommandObjectMultiword.h" 19 class CommandStructuredData : public CommandObjectMultiword { 22 : CommandObjectMultiword(interpreter, "structured-data", in CommandStructuredData()
|