Lines Matching refs:Arg
82 void Command::printArg(raw_ostream &OS, const char *Arg, bool Quote) { in printArg() argument
83 const bool Escape = std::strpbrk(Arg, "\"\\$"); in printArg()
86 OS << Arg; in printArg()
92 while (const char c = *Arg++) { in printArg()
103 for (const char *Arg : InputFileList) { in writeResponseFile() local
104 OS << Arg << '\n'; in writeResponseFile()
112 for (const char *Arg : Arguments) { in writeResponseFile() local
115 for (; *Arg != '\0'; Arg++) { in writeResponseFile()
116 if (*Arg == '\"' || *Arg == '\\') { in writeResponseFile()
119 OS << *Arg; in writeResponseFile()
144 for (const char *Arg : Arguments) { in buildArgvForResponseFile() local
145 if (Inputs.count(Arg) == 0) { in buildArgvForResponseFile()
146 Out.push_back(Arg); in buildArgvForResponseFile()
170 const char *const Arg = Args[i]; in Print() local
173 if (int Skip = skipArgs(Arg, HaveCrashVFS)) { in Print()
178 [&Arg](StringRef IF) { return IF == Arg; }); in Print()
190 printArg(OS, Arg, Quote); in Print()