Lines Matching refs:CommandLine
173 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, in addTargetAndModeForProgramName() argument
175 if (!CommandLine.empty() && !InvokedAs.empty()) { in addTargetAndModeForProgramName()
179 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName()
190 CommandLine.insert(++CommandLine.begin(), TargetMode.second); in addTargetAndModeForProgramName()
193 CommandLine.insert(++CommandLine.begin(), {"-target", TargetMode.first}); in addTargetAndModeForProgramName()
212 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument
214 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), in ToolInvocation()
219 std::vector<std::string> CommandLine, FrontendAction *FAction, in ToolInvocation() argument
221 : CommandLine(std::move(CommandLine)), in ToolInvocation()
239 for (const std::string &Str : CommandLine) in run()
424 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local
426 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run()
427 assert(!CommandLine.empty()); in run()
437 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); in run()
442 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), in run()