Lines Matching defs:m_options

54   Options *GetOptions() override { return &m_options; }
122 if (m_options.m_cmd_relative_to_command_file) {
148 if (m_options.m_stop_on_error.OptionWasSet() ||
149 m_options.m_silent_run.OptionWasSet() ||
150 m_options.m_stop_on_continue.OptionWasSet()) {
151 if (m_options.m_stop_on_continue.OptionWasSet())
153 m_options.m_stop_on_continue.GetCurrentValue());
155 if (m_options.m_stop_on_error.OptionWasSet())
156 options.SetStopOnError(m_options.m_stop_on_error.GetCurrentValue());
159 if (m_options.m_silent_run.GetCurrentValue()) {
172 CommandOptions m_options;
833 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 0,
1022 Options *GetOptions() override { return &m_options; }
1024 CommandOptions m_options;
1693 m_options(interpreter, cmd_obj_sp), m_fetched_help_short(false),
1717 m_options_error = m_options.SetOptionsFromArray(*(options_dict));
1884 if (m_options.GetNumOptions() == 0)
1886 return &m_options;
1916 CommandOptions m_options;
1940 Options *GetOptions() override { return &m_options; }
1989 if (m_options.relative_to_command_file) {
2003 options.SetSilent(m_options.silent);
2025 CommandOptions m_options;
2050 Options *GetOptions() override { return &m_options; }
2222 switch (m_options.m_overwrite_lazy) {
2251 m_short_help.assign(m_options.m_short_help);
2252 m_synchronicity = m_options.m_synchronicity;
2253 m_completion_type = m_options.m_completion_type;
2256 if (m_options.m_class_name.empty() && m_options.m_funct_name.empty()) {
2263 if (m_options.m_class_name.empty()) {
2265 m_interpreter, m_cmd_name, m_options.m_funct_name,
2266 m_options.m_short_help, m_synchronicity, m_completion_type));
2275 m_options.m_class_name.c_str());
2278 "'{0}'", m_options.m_class_name);
2282 if (m_options.m_parsed_command) {
2311 CommandOptions m_options;
2507 Options *GetOptions() override { return &m_options; }
2575 GetCommandInterpreter(), cmd_name, m_options.m_short_help.c_str(),
2576 m_options.m_long_help.c_str()));
2579 cmd_name, cmd_sp, m_options.m_overwrite);
2603 GetCommandInterpreter(), cmd_name, m_options.m_short_help.c_str(),
2604 m_options.m_long_help.c_str()));
2606 add_to_me->LoadUserSubcommand(cmd_name, cmd_sp, m_options.m_overwrite);
2617 CommandOptions m_options;