Lines Matching defs:raw_command_string
390 llvm::StringRef raw_command_string = args_with_suffix.GetRawPart();
391 Args args(raw_command_string);
410 // Strip the new alias name off 'raw_command_string' (leave it on args,
412 size_t pos = raw_command_string.find(alias_command);
414 raw_command_string = raw_command_string.substr(alias_command.size());
415 pos = raw_command_string.find_first_not_of(' ');
417 raw_command_string = raw_command_string.substr(pos);
440 // the front of raw_command_string. raw_command_string is returned with the
442 llvm::StringRef original_raw_command_string = raw_command_string;
444 m_interpreter.GetCommandObjectForCommand(raw_command_string);
457 HandleAliasingRawCommand(alias_command, raw_command_string, *cmd_obj,
463 llvm::StringRef raw_command_string,
488 alias_command, cmd_obj_sp, raw_command_string)) {