Lines Matching refs:CommandLine
265 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, in addTargetAndModeForProgramName() argument
267 if (CommandLine.empty() || InvokedAs.empty()) in addTargetAndModeForProgramName()
286 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName()
294 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); in addTargetAndModeForProgramName()
297 CommandLine.insert(++CommandLine.begin(), in addTargetAndModeForProgramName()
322 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument
324 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), in ToolInvocation()
328 std::vector<std::string> CommandLine, in ToolInvocation() argument
331 : CommandLine(std::move(CommandLine)), in ToolInvocation()
343 for (const std::string &Str : CommandLine) in run()
366 if (CommandLine.size() >= 2 && CommandLine[1] == "-cc1") { in run()
566 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local
568 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run()
569 assert(!CommandLine.empty()); in run()
579 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); in run()
584 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), in run()