Searched defs:raw_command_string (Results 1 - 1 of 1) sorted by relevance

/external/lldb/source/Commands/
H A DCommandObjectCommands.cpp539 std::string raw_command_string (raw_command_line);
554 // Strip the new alias name off 'raw_command_string' (leave it on args, which gets passed to 'Execute', which
556 size_t pos = raw_command_string.find (alias_command);
559 raw_command_string = raw_command_string.substr (alias_command.size());
560 pos = raw_command_string.find_first_not_of (' ');
562 raw_command_string = raw_command_string.substr (pos);
581 // Get CommandObject that is being aliased. The command name is read from the front of raw_command_string.
582 // raw_command_string i
606 HandleAliasingRawCommand(const std::string &alias_command, std::string &raw_command_string, CommandObject &cmd_obj, CommandReturnObject &result) argument
[all...]

Completed in 90 milliseconds