Lines Matching refs:syntax
44 const char *syntax = nullptr, in CommandPluginInterfaceImplementation() argument
47 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandPluginInterfaceImplementation()
614 const char *help, const char *syntax) { in AddCommand() argument
615 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
616 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
621 const char *syntax, const char *auto_repeat_command) { in AddCommand() argument
622 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
626 *m_opaque_ptr, name, impl, help, syntax, /*flags=*/0, in AddCommand()
710 const char *help, const char *syntax) { in AddCommand() argument
711 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
712 return AddCommand(name, impl, help, syntax, /*auto_repeat_command=*/""); in AddCommand()
717 const char *help, const char *syntax, in AddCommand() argument
719 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax, auto_repeat_command); in AddCommand()
727 m_opaque_sp->GetCommandInterpreter(), name, impl, help, syntax, in AddCommand()