Lines Matching refs:Program
1 //===- Win32/Program.cpp - Win32 Program Implementation ------- -*- C++ -*-===//
9 // This file provides the Win32 specific implementation of the Program class.
172 static bool Execute(ProcessInfo &PI, StringRef Program,
177 if (!sys::fs::can_execute(Program)) {
183 // can_execute may succeed by looking at Program + ".exe". CreateProcessW
188 if (!sys::fs::exists(Program))
189 Program = Twine(Program + ".exe").toStringRef(ProgramStorage);
275 if (std::error_code ec = sys::windows::widenPath(Program, ProgramUtf16)) {
303 Program.str() + "'");
561 bool llvm::sys::commandLineFitsWithinSystemLimits(StringRef Program,
569 FullArgs.push_back(Program);