Lines Matching refs:Path
13 #include "llvm/Support/Path.h"
35 ErrorOr<vfs::Status> status(const Twine &Path) {
37 FilesAndDirs.find(Path.str());
42 std::error_code openFileForRead(const Twine &Path,
56 std::string Path;
58 if (Path.size() < S.size() && S.find(Path) == 0) {
60 if (LastSep == Path.size() || LastSep == Path.size()-1)
68 Path(_Path.str()) {
96 void addEntry(StringRef Path, const vfs::Status &Status) {
97 FilesAndDirs[Path] = Status;
100 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) {
101 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
103 addEntry(Path, S);
106 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) {
107 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
109 addEntry(Path, S);
112 void addSymlink(StringRef Path) {
113 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
115 addEntry(Path, S);
269 SmallString<128> Path;
273 EC = llvm::sys::fs::createUniqueDirectory(Name, Path);
275 Path = Name.str();
276 EC = llvm::sys::fs::create_directory(Twine(Path));
279 Path = "";
283 if (Path != "")
284 EXPECT_FALSE(llvm::sys::fs::remove(Path.str()));
286 operator StringRef() { return Path.str(); }
525 // a legal *absolute* path on Windows as well as *nix.
833 " { 'type': 'file', 'name': '//root/path/to/file',\n"
837 EXPECT_FALSE(FS->status("//root/path/to/file").getError());
838 EXPECT_FALSE(FS->status("//root/path/to").getError());
839 EXPECT_FALSE(FS->status("//root/path").getError());
845 " { 'type': 'directory', 'name': '//root/path/to',\n"
850 EXPECT_FALSE(FS->status("//root/path/to/file").getError());
851 EXPECT_FALSE(FS->status("//root/path/to").getError());
852 EXPECT_FALSE(FS->status("//root/path").getError());
859 " 'contents': [ { 'type': 'file', 'name': 'path/to/file',\n"
863 EXPECT_FALSE(FS->status("//root/path/to/file").getError());
864 EXPECT_FALSE(FS->status("//root/path/to").getError());
865 EXPECT_FALSE(FS->status("//root/path").getError());
876 " { 'type': 'directory', 'name': '//root/path/to////',\n"
881 EXPECT_FALSE(FS->status("//root/path/to/file").getError());
882 EXPECT_FALSE(FS->status("//root/path/to").getError());
883 EXPECT_FALSE(FS->status("//root/path").getError());