Lines Matching defs:raw_command_string
384 llvm::StringRef raw_command_string = args_with_suffix.GetRawPart();
385 Args args(raw_command_string);
404 // Strip the new alias name off 'raw_command_string' (leave it on args,
406 size_t pos = raw_command_string.find(alias_command);
408 raw_command_string = raw_command_string.substr(alias_command.size());
409 pos = raw_command_string.find_first_not_of(' ');
411 raw_command_string = raw_command_string.substr(pos);
434 // the front of raw_command_string. raw_command_string is returned with the
436 llvm::StringRef original_raw_command_string = raw_command_string;
438 m_interpreter.GetCommandObjectForCommand(raw_command_string);
451 HandleAliasingRawCommand(alias_command, raw_command_string, *cmd_obj,
457 llvm::StringRef raw_command_string,
482 alias_command, cmd_obj_sp, raw_command_string)) {