Home | History | Annotate | Download | only in Commands

Lines Matching refs:Args

24 #include "lldb/Interpreter/Args.h"
143 DoExecute (Args& command, CommandReturnObject &result)
269 GetRepeatCommand (Args &current_command_args, uint32_t index)
275 HandleArgumentCompletion (Args &input,
332 m_stop_on_continue = Args::StringToBoolean(option_arg, true, &success);
337 m_silent_run = Args::StringToBoolean(option_arg, true, &success);
375 DoExecute(Args& command, CommandReturnObject &result)
426 "def my_command_impl(debugger, args, result, internal_dict):";
538 Args args (raw_command_line);
541 size_t argc = args.GetArgumentCount();
552 const std::string alias_command = args.GetArgumentAtIndex (0);
554 // Strip the new alias name off 'raw_command_string' (leave it on args, which gets passed to 'Execute', which
594 // Note that args was initialized with the original command, and has not been updated to this point.
596 return HandleAliasingNormalCommand (args, result);
652 HandleAliasingNormalCommand (Args& args, CommandReturnObject &result)
654 size_t argc = args.GetArgumentCount();
663 const std::string alias_command = args.GetArgumentAtIndex(0);
664 const std::string actual_command = args.GetArgumentAtIndex(1);
666 args.Shift(); // Shift the alias command word off the argument vector.
667 args.Shift(); // Shift the old command word off the argument vector.
689 while (cmd_obj->IsMultiwordObject() && args.GetArgumentCount() > 0)
693 const std::string sub_command = args.GetArgumentAtIndex(0);
700 args.Shift(); // Shift the sub_command word off the argument vector.
716 if (args.GetArgumentCount () > 0)
723 args.GetCommandString (args_string);
803 DoExecute (Args& args, CommandReturnObject &result)
808 if (args.GetArgumentCount() != 0)
810 const char *command_name = args.GetArgumentAtIndex(0);
903 DoExecute (Args& command, CommandReturnObject &result)
1384 HandleArgumentCompletion (Args &input,
1468 DoExecute (Args& command, CommandReturnObject &result)
1589 m_synchronous = (ScriptedCommandSynchronicity) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
1745 DoExecute (Args& command, CommandReturnObject &result)
1858 DoExecute (Args& command, CommandReturnObject &result)
1895 DoExecute (Args& command, CommandReturnObject &result)
1939 DoExecute (Args& command, CommandReturnObject &result)