Home | History | Annotate | Download | only in Driver

Lines Matching full:quote

78 static void PrintArg(raw_ostream &OS, const char *Arg, bool Quote) {
81 if (!Quote && !Escape) {
86 // Quote and escape. This isn't really complete, but good enough.
149 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
151 // Always quote the exe.
153 PrintArg(OS, Executable, /*Quote=*/true);
182 PrintArg(OS, ShortName.str().c_str(), Quote);
188 PrintArg(OS, Arg, Quote);
193 PrintArg(OS, "-ivfsoverlay", Quote);
195 PrintArg(OS, CrashInfo->VFSPath.str().c_str(), Quote);
266 bool Quote, CrashReportInfo *CrashInfo) const {
267 Command::Print(OS, "", Quote, CrashInfo);
269 Fallback->Print(OS, Terminator, Quote, CrashInfo);
300 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote,
303 Job.Print(OS, Terminator, Quote, CrashInfo);