Lines Matching refs:CommandLine
246 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, in addTargetAndModeForProgramName() argument
248 if (CommandLine.empty() || InvokedAs.empty()) in addTargetAndModeForProgramName()
267 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName()
275 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); in addTargetAndModeForProgramName()
278 CommandLine.insert(++CommandLine.begin(), in addTargetAndModeForProgramName()
303 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument
305 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), in ToolInvocation()
309 std::vector<std::string> CommandLine, in ToolInvocation() argument
312 : CommandLine(std::move(CommandLine)), in ToolInvocation()
324 for (const std::string &Str : CommandLine) in run()
532 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local
534 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run()
535 assert(!CommandLine.empty()); in run()
545 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); in run()
550 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), in run()