Home | History | Annotate | Download | only in Support

Lines Matching refs:Path1

903   SmallString<64> Path1("a");
910 path::native(Path1);
911 EXPECT_PATH_IS(Path1, "a", "a");
932 StringRef Path1("././/foolz/wat");
935 Path1 = path::remove_leading_dotslash(Path1);
936 Path1, "foolz/wat");
957 SmallString<64> Path1(".\\.\\c");
958 EXPECT_TRUE(path::remove_dots(Path1, true));
959 EXPECT_EQ("c", Path1);
968 SmallString<64> Path1("././c");
969 EXPECT_TRUE(path::remove_dots(Path1, true));
970 EXPECT_EQ("c", Path1);
975 SmallString<64> Path1("/foo");
982 SmallString<64> Path = Path1;
991 Path = Path1;