Lines Matching defs:Path
28 #include "llvm/Support/Path.h"
99 Replacement Replace("/path/to/file.cpp", 0, 1, "");
100 EXPECT_EQ("/path/to/file.cpp", Replace.getFilePath());
228 SmallString<1024> Path;
230 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
237 const FileEntry *File = Context.Files.getFile(Path);
240 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second;
241 assert(Found == Path);
247 std::string Path = TemporaryFiles.lookup(Name);
248 assert(!Path.empty());
255 Context.Files.getBufferForFile(Path, nullptr));