Lines Matching refs:CommandLine
271 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, in addTargetAndModeForProgramName() argument
273 if (CommandLine.empty() || InvokedAs.empty()) in addTargetAndModeForProgramName()
292 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName()
300 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); in addTargetAndModeForProgramName()
303 CommandLine.insert(++CommandLine.begin(), in addTargetAndModeForProgramName()
308 void addExpandedResponseFiles(std::vector<std::string> &CommandLine, in addExpandedResponseFiles() argument
314 Argv.reserve(CommandLine.size()); in addExpandedResponseFiles()
315 for (auto &Arg : CommandLine) { in addExpandedResponseFiles()
330 CommandLine = std::move(ExpandedArgv); in addExpandedResponseFiles()
353 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument
355 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), in ToolInvocation()
359 std::vector<std::string> CommandLine, in ToolInvocation() argument
362 : CommandLine(std::move(CommandLine)), in ToolInvocation()
374 for (const std::string &Str : CommandLine) in run()
397 if (CommandLine.size() >= 2 && CommandLine[1] == "-cc1") { in run()
597 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local
599 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run()
600 assert(!CommandLine.empty()); in run()
610 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); in run()
619 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), in run()