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()
555 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local
557 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run()
558 assert(!CommandLine.empty()); in run()
568 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); in run()
573 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), in run()