Home | History | Annotate | Download | only in LibDriver

Lines Matching defs:Path

23 #include "llvm/Support/Path.h"
64 llvm::sys::path::replace_extension(Val, ".lib");
71 // Add current directory as first item of the search path.
84 StringRef Path;
85 std::tie(Path, Env) = Env.split(';');
86 Ret.push_back(Path);
94 SmallString<128> Path = Dir;
95 sys::path::append(Path, File);
96 if (sys::fs::exists(Path))
97 return Path.str().str();
133 Optional<std::string> Path = findInputFile(Arg->getValue(), SearchPaths);
134 if (!Path.hasValue()) {
138 Members.emplace_back(Saver.save(*Path));