Lines Matching refs:Command
37 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command
102 void Command::printArg(raw_ostream &OS, StringRef Arg, bool Quote) { in printArg()
120 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile()
146 void Command::buildArgvForResponseFile( in buildArgvForResponseFile()
215 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print()
305 void Command::setResponseFile(const char *FileName) { in setResponseFile()
311 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { in setEnvironment()
317 int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects, in Execute()
378 std::unique_ptr<Command> Fallback_) in FallbackCommand()
379 : Command(Source_, Creator_, Executable_, Arguments_, Inputs), in FallbackCommand()
384 Command::Print(OS, "", Quote, CrashInfo); in Print()
398 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()
418 : Command(Source_, Creator_, Executable_, Arguments_, Inputs) {} in ForceSuccessCommand()
422 Command::Print(OS, "", Quote, CrashInfo); in Print()
429 int Status = Command::Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()