Lines Matching refs:Arg
78 static void PrintArg(raw_ostream &OS, const char *Arg, bool Quote) { in PrintArg() argument
79 const bool Escape = std::strpbrk(Arg, "\"\\$"); in PrintArg()
82 OS << Arg; in PrintArg()
88 while (const char c = *Arg++) { in PrintArg()
99 for (const char *Arg : InputFileList) { in writeResponseFile() local
100 OS << Arg << '\n'; in writeResponseFile()
106 for (const char *Arg : Arguments) { in writeResponseFile() local
109 for (; *Arg != '\0'; Arg++) { in writeResponseFile()
110 if (*Arg == '\"' || *Arg == '\\') { in writeResponseFile()
113 OS << *Arg; in writeResponseFile()
138 for (const char *Arg : Arguments) { in buildArgvForResponseFile() local
139 if (Inputs.count(Arg) == 0) { in buildArgvForResponseFile()
140 Out.push_back(Arg); in buildArgvForResponseFile()
171 const char *const Arg = Args[i]; in Print() local
174 if (int Skip = skipArgs(Arg, HaveCrashVFS)) { in Print()
177 } else if (llvm::sys::path::filename(Arg) == MainFilename && in Print()
188 PrintArg(OS, Arg, Quote); in Print()