reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/Path.cpp
 1195             remove_dots(".\\.\\\\foolz\\wat", false, path::Style::windows));
 1196   EXPECT_EQ("", remove_dots(".\\\\\\\\\\", false, path::Style::windows));
 1199             remove_dots(".\\a\\..\\b\\c", false, path::Style::windows));
 1200   EXPECT_EQ("b\\c", remove_dots(".\\a\\..\\b\\c", true, path::Style::windows));
 1201   EXPECT_EQ("c", remove_dots(".\\.\\c", true, path::Style::windows));
 1203             remove_dots("..\\a\\b\\..\\c", true, path::Style::windows));
 1205             remove_dots("..\\..\\a\\b\\..\\c", true, path::Style::windows));
 1212             remove_dots("././/foolz/wat", false, path::Style::posix));
 1213   EXPECT_EQ("", remove_dots("./////", false, path::Style::posix));
 1215   EXPECT_EQ("a/../b/c", remove_dots("./a/../b/c", false, path::Style::posix));
 1216   EXPECT_EQ("b/c", remove_dots("./a/../b/c", true, path::Style::posix));
 1217   EXPECT_EQ("c", remove_dots("././c", true, path::Style::posix));
 1218   EXPECT_EQ("../a/c", remove_dots("../a/b/../c", true, path::Style::posix));
 1220             remove_dots("../../a/b/../c", true, path::Style::posix));
 1221   EXPECT_EQ("/a/c", remove_dots("/../../a/c", true, path::Style::posix));
 1223             remove_dots("/../a/b//../././/c", true, path::Style::posix));