Home
last modified time | relevance | path

Searched refs:AddCommand (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/API/
H A DSBCommandInterpreterTest.cpp50 m_interp.AddCommand("dummy", &dummy, /*help=*/nullptr); in TEST_F()
65 m_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-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreter.h88 lldb::SBCommand AddCommand(const char *name,
115 lldb::SBCommand AddCommand(const char *name,
145 lldb::SBCommand AddCommand(const char *name,
336 lldb::SBCommand AddCommand(const char *name,
363 lldb::SBCommand AddCommand(const char *name,
397 lldb::SBCommand AddCommand(const char *name,
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp552 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
556 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
561 SBCommandInterpreter::AddCommand(const char *name, in AddCommand() function in SBCommandInterpreter
565 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
568 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter
649 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
653 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
657 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
661 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
664 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand
/llvm-project-15.0.7/lldb/examples/plugins/commands/
H A Dfooplugin.cpp44 foo.AddCommand("child", new ChildCommand(), "a child of foo"); in PluginInitialize()
/llvm-project-15.0.7/lldb/test/API/api/command-return-object/
H A Dmain.cpp30 interp.AddCommand("crasher", &crasher, nullptr /*help*/); in main()
/llvm-project-15.0.7/lldb/test/API/functionalities/plugins/command_plugin/
H A Dplugin.cpp.template43 foo.AddCommand("child",new ChildCommand(),"a child of plugin_loaded_command");
/llvm-project-15.0.7/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs225 commandService.AddCommand(menuItem); in Initialize()
231 commandService.AddCommand(menuItem); in Initialize()
/llvm-project-15.0.7/lldb/tools/intel-features/intel-mpx/
H A Dcli-wrapper-mpxtable.cpp415 mpxTable.AddCommand("show", new MPXTableShow(), mpx_show_help); in MPXPluginInitialize()
420 mpxTable.AddCommand("set", new MPXTableSet(), mpx_set_help); in MPXPluginInitialize()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h258 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp864 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1018 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1099 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand() function in CommandInterpreter