/llvm-project/lldb/unittests/API/ |
H A D | SBCommandInterpreterTest.cpp | 49 interp.AddCommand("dummy", &dummy, /*help=*/nullptr); in TEST_F() 64 interp.AddCommand("dummy_with_autorepeat", &dummy, /*help=*/nullptr, in TEST_F() 86 command.AddCommand("subcommand", &subcommand, /*help=*/nullptr); in TEST_F() 102 command.AddCommand("subcommand_with_autorepeat", &subcommand, in TEST_F() 121 command.AddCommand( in TEST_F()
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 121 lldb::SBCommand AddCommand(const char *name, 148 lldb::SBCommand AddCommand(const char *name, 178 lldb::SBCommand AddCommand(const char *name, 405 lldb::SBCommand AddCommand(const char *name, 432 lldb::SBCommand AddCommand(const char *name, 466 lldb::SBCommand AddCommand(const char *name,
|
/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 603 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter 607 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand() 612 SBCommandInterpreter::AddCommand(const char *name, in AddCommand() function in SBCommandInterpreter 616 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand() 619 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter 700 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand 704 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand() 708 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand 712 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand() 715 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
|
/llvm-project/lldb/examples/plugins/commands/ |
H A D | fooplugin.cpp | 44 foo.AddCommand("child", new ChildCommand(), "a child of foo"); in PluginInitialize()
|
/llvm-project/lldb/test/API/api/command-return-object/ |
H A D | main.cpp | 30 interp.AddCommand("crasher", &crasher, nullptr /*help*/); in main()
|
/llvm-project/lldb/test/API/functionalities/plugins/command_plugin/ |
H A D | plugin.cpp.template | 43 foo.AddCommand("child",new ChildCommand(),"a child of plugin_loaded_command");
|
/llvm-project/clang/tools/clang-format-vs/ClangFormat/ |
H A D | ClangFormatPackage.cs |
|
/llvm-project/lldb/tools/intel-features/intel-mpx/ |
H A D | cli-wrapper-mpxtable.cpp | 415 mpxTable.AddCommand("show", new MPXTableShow(), mpx_show_help); in MPXPluginInitialize() 420 mpxTable.AddCommand("set", new MPXTableSet(), mpx_set_help); in MPXPluginInitialize()
|
/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 281 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
|
/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectCommands.cpp | 823 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in DoExecute() 976 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true);
|
/llvm-project/lldb/tools/lldb-dap/ |
H A D | lldb-dap.cpp | 1918 cmd.AddCommand( in request_launch() 1923 cmd.AddCommand( in request_launch() 1926 cmd.AddCommand("send-event", new SendEventRequestHandler(dap), in request_launch()
|
/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 1144 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand() 1143 bool CommandInterpreter::AddCommand(llvm::StringRef name, AddCommand() function in CommandInterpreter
|