/external/llvm-project/lldb/source/API/ |
D | SBCommandInterpreter.cpp | 599 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter 602 lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand() 606 return LLDB_RECORD_RESULT(AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand() 611 SBCommandInterpreter::AddCommand(const char *name, in AddCommand() function in SBCommandInterpreter 614 LLDB_RECORD_METHOD(lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand() 619 AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/"")) in AddCommand() 622 lldb::SBCommand SBCommandInterpreter::AddCommand( in AddCommand() function in SBCommandInterpreter 625 LLDB_RECORD_METHOD(lldb::SBCommand, SBCommandInterpreter, AddCommand, in AddCommand() 707 lldb::SBCommand SBCommand::AddCommand(const char *name, in AddCommand() function in SBCommand 711 lldb::SBCommand, SBCommand, AddCommand, in AddCommand() [all …]
|
/external/llvm-project/lldb/unittests/API/ |
D | SBCommandInterpreterTest.cpp | 50 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()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBCommandInterpreter.h | 86 lldb::SBCommand AddCommand(const char *name, 113 lldb::SBCommand AddCommand(const char *name, 143 lldb::SBCommand AddCommand(const char *name, 332 lldb::SBCommand AddCommand(const char *name, 359 lldb::SBCommand AddCommand(const char *name, 393 lldb::SBCommand AddCommand(const char *name,
|
/external/llvm-project/lldb/examples/plugins/commands/ |
D | fooplugin.cpp | 44 foo.AddCommand("child", new ChildCommand(), "a child of foo"); in PluginInitialize()
|
/external/llvm-project/lldb/test/API/api/command-return-object/ |
D | main.cpp | 30 interp.AddCommand("crasher", &crasher, nullptr /*help*/); in main()
|
/external/llvm-project/lldb/tools/intel-features/intel-pt/ |
D | cli-wrapper-pt.cpp | 517 proc_trace.AddCommand("start", proc_trace_start, help_proc_trace_start, in PTPluginInitialize() 532 proc_trace.AddCommand("stop", proc_trace_stop, help_proc_trace_stop, in PTPluginInitialize() 561 proc_trace.AddCommand("show-instr-log", proc_trace_show_instr_log, in PTPluginInitialize() 581 proc_trace.AddCommand("show-trace-options", proc_trace_options, in PTPluginInitialize()
|
/external/llvm-project/lldb/test/API/functionalities/plugins/command_plugin/ |
D | plugin.cpp.template | 43 foo.AddCommand("child",new ChildCommand(),"a child of plugin_loaded_command");
|
/external/llvm-project/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormatPackage.cs | 225 commandService.AddCommand(menuItem); in Initialize() 231 commandService.AddCommand(menuItem); in Initialize()
|
/external/llvm-project/lldb/tools/intel-features/intel-mpx/ |
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()
|
/external/deqp-deps/amber/src/vkscript/ |
D | command_parser.h | 48 void AddCommand(std::unique_ptr<Command> command) { in AddCommand() function
|
/external/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormatPackage.cs | 185 commandService.AddCommand(menuItem); in Initialize()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandInterpreter.h | 261 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectCommands.cpp | 848 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete() 1004 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 991 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand() function in CommandInterpreter
|