Lines Matching refs:file_root
67 TempDir file_root("file_root", /*Unique*/ true); in TEST() local
69 llvm::SmallString<128> aaa(file_root.path()); in TEST()
73 llvm::SmallString<128> bbb(file_root.path()); in TEST()
77 llvm::SmallString<128> ccc(file_root.path()); in TEST()
81 std::string root_fs(file_root.path()); in TEST()
84 FileCollector.addDirectory(file_root.path()); in TEST()
95 llvm::SmallString<128> ddd(file_root.path()); in TEST()
102 TempDir file_root("file_root", /*Unique*/ true); in TEST() local
103 TempFile a(file_root.path("aaa")); in TEST()
104 TempFile b(file_root.path("bbb")); in TEST()
105 TempFile c(file_root.path("ccc")); in TEST()
130 TempDir file_root("dir_root", /*Unique*/ true); in TEST() local
131 TempDir subdir(file_root.path("subdir")); in TEST()
132 TempDir subdir2(file_root.path("subdir2")); in TEST()
161 TempDir file_root("dir_root", /*Unique*/ true); in TEST() local
162 TempDir subdir(file_root.path("subdir")); in TEST()
163 TempDir subdir2(file_root.path("subdir2")); in TEST()
165 TempFile b(file_root.path("b")); in TEST()
166 TempDir subdir3(file_root.path("subdir3")); in TEST()
201 TempDir file_root("file_root", /*Unique*/ true); in TEST() local
204 TempFile a(file_root.path("aaa")); in TEST()
205 TempFile b(file_root.path("bbb")); in TEST()
206 TempFile c(file_root.path("ccc")); in TEST()
209 TempDir foo(file_root.path("foo")); in TEST()
216 TempLink symlink(file_root.path("foo"), file_root.path("bar")); in TEST()
229 FileCollector.addFile(file_root.path() + "/bar/ddd"); in TEST()
235 std::string vpath = (file_root.path() + "/aaa").str(); in TEST()
237 (reproducer_root.path() + file_root.path() + "/aaa").str(); in TEST()
244 std::string vpath = (file_root.path() + "/bar/ddd").str(); in TEST()
246 (reproducer_root.path() + file_root.path() + "/foo/ddd").str(); in TEST()
253 std::string vpath = (file_root.path() + "/eee").str(); in TEST()
255 (reproducer_root.path() + file_root.path() + "/eee").str(); in TEST()
262 TempDir file_root("dir_root", /*Unique*/ true); in TEST() local
263 TempFile a(file_root.path("a")); in TEST()
264 TempLink symlink(file_root.path("a"), file_root.path("b")); in TEST()