Lines Matching refs:Path
27 #include "llvm/Support/Path.h"
58 // absolute path if we find the file here, and otherwise letting
60 llvm::SmallString<128> Path(File);
61 llvm::sys::fs::make_absolute(Path);
63 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
64 Path = File;
68 return Lexer::Stringify(Path.str());
701 const std::string &Path = InitOpts.Includes[i];
702 if (Path == InitOpts.ImplicitPTHInclude)
703 AddImplicitIncludePTH(Builder, PP, Path);
705 AddImplicitInclude(Builder, Path, PP.getFileManager());