Home | History | Annotate | Download | only in Support

Lines Matching defs:Paths

58   SmallVector<StringRef, 40> paths;
59 paths.push_back("");
60 paths.push_back(".");
61 paths.push_back("..");
62 paths.push_back("foo");
63 paths.push_back("/");
64 paths.push_back("/foo");
65 paths.push_back("foo/");
66 paths.push_back("/foo/");
67 paths.push_back("foo/bar");
68 paths.push_back("/foo/bar");
69 paths.push_back("//net");
70 paths.push_back("//net/foo");
71 paths.push_back("///foo///");
72 paths.push_back("///foo///bar");
73 paths.push_back("/.");
74 paths.push_back("./");
75 paths.push_back("/..");
76 paths.push_back("../");
77 paths.push_back("foo/.");
78 paths.push_back("foo/..");
79 paths.push_back("foo/./");
80 paths.push_back("foo/./bar");
81 paths.push_back("foo/..");
82 paths.push_back("foo/../");
83 paths.push_back("foo/../bar");
84 paths.push_back("c:");
85 paths.push_back("c:/");
86 paths.push_back("c:foo");
87 paths.push_back("c:/foo");
88 paths.push_back("c:foo/");
89 paths.push_back("c:/foo/");
90 paths.push_back("c:/foo/bar");
91 paths.push_back("prn:");
92 paths.push_back("c:\\");
93 paths.push_back("c:foo");
94 paths.push_back("c:\\foo");
95 paths.push_back("c:foo\\");
96 paths.push_back("c:\\foo\\");
97 paths.push_back("c:\\foo/");
98 paths.push_back("c:/foo\\bar");
101 for (SmallVector<StringRef, 40>::const_iterator i = paths.begin(),
102 e = paths.end();
157 Relative[5] = '/'; // Fix up windows paths.
275 SmallVector<StringRef, 4> Paths;
276 Paths.push_back("/foo/");
277 Paths.push_back("/foo//");
278 Paths.push_back("//net//");
280 Paths.push_back("c:\\\\");
283 for (StringRef Path : Paths) {
333 EXPECT_EQ(CacheDir, CacheDir2); // and return same paths
467 // Two paths representing the same file on disk should still provide the
636 // While we're here, prove that .. and . handling works in these long paths.