• Home
  • Raw
  • Download

Lines Matching refs:FPL

74 #define FPL(x) FILE_PATH_LITERAL(x)  macro
344 FilePath file_01 = temp_dir_.GetPath().Append(FPL("The file 01.txt")); in TEST_F()
350 FilePath subdir_path = temp_dir_.GetPath().Append(FPL("Level2")); in TEST_F()
353 FilePath file_02 = subdir_path.Append(FPL("The file 02.txt")); in TEST_F()
359 FilePath subsubdir_path = subdir_path.Append(FPL("Level3")); in TEST_F()
362 FilePath file_03 = subsubdir_path.Append(FPL("The file 03.txt")); in TEST_F()
372 FilePath file_a_path = temp_dir_.GetPath().Append(FPL("file_a")); in TEST_F()
373 FilePath dir_path = temp_dir_.GetPath().Append(FPL("dir")); in TEST_F()
374 FilePath file_b_path = dir_path.Append(FPL("file_b")); in TEST_F()
414 FilePath base_a = temp_dir_.GetPath().Append(FPL("base_a")); in TEST_F()
424 FilePath sub_a = base_a.Append(FPL("sub_a")); in TEST_F()
427 FilePath file_txt = sub_a.Append(FPL("file.txt")); in TEST_F()
434 FilePath sub_long_rel(FPL("sub_long")); in TEST_F()
435 FilePath deep_txt(FPL("deep.txt")); in TEST_F()
445 FilePath::StringType long_name_str = FPL("long_name_"); in TEST_F()
457 FilePath base_b = temp_dir_.GetPath().Append(FPL("base_b")); in TEST_F()
460 FilePath to_sub_a = base_b.Append(FPL("to_sub_a")); in TEST_F()
467 FilePath to_base_b = base_b.Append(FPL("to_base_b")); in TEST_F()
472 FilePath to_sub_long = base_b.Append(FPL("to_sub_long")); in TEST_F()
483 ASSERT_TRUE(NormalizeFilePath(to_sub_a.Append(FPL("file.txt")), in TEST_F()
489 ASSERT_TRUE(NormalizeFilePath(base_b.Append(FPL("to_base_b")) in TEST_F()
490 .Append(FPL("to_base_b")) in TEST_F()
491 .Append(FPL("to_sub_a")) in TEST_F()
492 .Append(FPL("file.txt")), in TEST_F()
502 long_path = long_path.Append(FPL("to_base_b")); in TEST_F()
504 long_path = long_path.Append(FPL("to_sub_a")) in TEST_F()
505 .Append(FPL("file.txt")); in TEST_F()
518 ASSERT_FALSE(NormalizeFilePath(to_sub_a.Append(FPL("file.txt")), in TEST_F()
545 FilePath kRelativePath(FPL("dir1\\dir2\\file.txt")); in TEST_F()
577 const FilePath::StringType kExtraChars = FPL("12345"); in TEST_F()
597 const FilePath::CharType kLongDirName[] = FPL("A long path"); in TEST_F()
598 const FilePath::CharType kTestSubDirName[] = FPL("test"); in TEST_F()
646 FilePath link_from = temp_dir_.GetPath().Append(FPL("from_file")); in TEST_F()
647 FilePath link_to = temp_dir_.GetPath().Append(FPL("to_file")); in TEST_F()
662 link_from = temp_dir_.GetPath().Append(FPL("from_dir")); in TEST_F()
663 link_to = temp_dir_.GetPath().Append(FPL("to_dir")); in TEST_F()
671 FilePath missing = temp_dir_.GetPath().Append(FPL("missing")); in TEST_F()
682 FilePath link_from = temp_dir_.GetPath().Append(FPL("from_file")); in TEST_F()
683 FilePath link_to = temp_dir_.GetPath().Append(FPL("to_file")); in TEST_F()
697 link_from = temp_dir_.GetPath().Append(FPL("from_dir")); in TEST_F()
698 link_to = temp_dir_.GetPath().Append(FPL("to_dir")); in TEST_F()
707 link_from = temp_dir_.GetPath().Append(FPL("link_a")); in TEST_F()
708 link_to = temp_dir_.GetPath().Append(FPL("link_b")); in TEST_F()
720 FilePath file_name = temp_dir_.GetPath().Append(FPL("Test DeleteFile 2.txt")); in TEST_F()
740 temp_dir_.GetPath().Append(FPL("Test DeleteFile 3.txt")); in TEST_F()
760 FilePath link_from = temp_dir_.GetPath().Append(FPL("from_file")); in TEST_F()
761 FilePath link_to = temp_dir_.GetPath().Append(FPL("to_file")); in TEST_F()
775 FilePath src_file = temp_dir_.GetPath().Append(FPL("src.txt")); in TEST_F()
790 temp_dir_.GetPath().Append(FPL("Test Readable File.txt")); in TEST_F()
828 temp_dir_.GetPath().Append(FPL("Test Readable File.txt")); in TEST_F()
869 FilePath subdir_path = temp_dir_.GetPath().Append(FPL("PermissionTest1")); in TEST_F()
874 FilePath file_name = subdir_path.Append(FPL("Test Readable File.txt")); in TEST_F()
916 const FilePath::CharType kDir1[] = FPL("dir1"); in TEST_F()
917 const FilePath::CharType kDir2[] = FPL("dir2"); in TEST_F()
928 const FilePath::CharType kRegularFileName[] = FPL("regular_file"); in TEST_F()
929 const FilePath::CharType kExeFileName[] = FPL("exe"); in TEST_F()
930 const FilePath::CharType kDneFileName[] = FPL("does_not_exist"); in TEST_F()
1153 FilePath src = temp_dir_.GetPath().Append(FPL("src.txt")); in TEST_F()
1162 FilePath dst = temp_dir_.GetPath().Append(FPL("dst.txt")); in TEST_F()
1307 FilePath file_name = temp_dir_.GetPath().Append(FPL("Test DeleteFile 1.txt")); in TEST_F()
1316 file_name = temp_dir_.GetPath().Append(FPL("Test DeleteFile 2.txt")); in TEST_F()
1332 temp_dir_.GetPath().Append(FPL("Test DeleteWildCard.txt")); in TEST_F()
1336 FilePath subdir_path = temp_dir_.GetPath().Append(FPL("DeleteWildCardDir")); in TEST_F()
1342 directory_contents = directory_contents.Append(FPL("*")); in TEST_F()
1359 temp_dir_.GetPath().Append(FPL("DeleteNonExistantWildCard")); in TEST_F()
1365 directory_contents = directory_contents.Append(FPL("*")); in TEST_F()
1381 temp_dir_.GetPath().Append(FPL("DeleteDirNonRecursive")); in TEST_F()
1385 FilePath file_name = test_subdir.Append(FPL("Test DeleteDir.txt")); in TEST_F()
1389 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1")); in TEST_F()
1393 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2")); in TEST_F()
1411 FilePath test_subdir = temp_dir_.GetPath().Append(FPL("DeleteDirRecursive")); in TEST_F()
1415 FilePath file_name = test_subdir.Append(FPL("Test DeleteDirRecursive.txt")); in TEST_F()
1419 FilePath subdir_path1 = test_subdir.Append(FPL("TestSubDir1")); in TEST_F()
1423 FilePath subdir_path2 = test_subdir.Append(FPL("TestSubDir2")); in TEST_F()
1441 FilePath test_subdir = temp_dir_.GetPath().Append(FPL("DeleteWithOpenFile")); in TEST_F()
1445 FilePath file_name1 = test_subdir.Append(FPL("Undeletebable File1.txt")); in TEST_F()
1450 FilePath file_name2 = test_subdir.Append(FPL("Deleteable File2.txt")); in TEST_F()
1454 FilePath file_name3 = test_subdir.Append(FPL("Undeletebable File3.txt")); in TEST_F()
2200 FilePath dest_dir = temp_dir_.GetPath().Append(FPL("dest_dir")); in TEST_F()
2371 FilePath file_path(temp_dir_.GetPath().Append(FPL("a_file"))); in TEST_F()
2437 FilePath file_name = temp_dir_.GetPath().Append(FPL("The file.txt")); in TEST_F()
2560 EXPECT_EQ(FPL(""), f0.Next().value()); in TEST_F()
2561 EXPECT_EQ(FPL(""), f0.Next().value()); in TEST_F()
2567 EXPECT_EQ(temp_dir_.GetPath().Append(FPL("..")).value(), in TEST_F()
2569 EXPECT_EQ(FPL(""), f0_dotdot.Next().value()); in TEST_F()
2572 FilePath dir1 = temp_dir_.GetPath().Append(FPL("dir1")); in TEST_F()
2574 FilePath dir2 = temp_dir_.GetPath().Append(FPL("dir2")); in TEST_F()
2576 FilePath dir2inner = dir2.Append(FPL("inner")); in TEST_F()
2580 FilePath dir2file = dir2.Append(FPL("dir2file.txt")); in TEST_F()
2582 FilePath dir2innerfile = dir2inner.Append(FPL("innerfile.txt")); in TEST_F()
2584 FilePath file1 = temp_dir_.GetPath().Append(FPL("file1.txt")); in TEST_F()
2587 .Append(FPL("file2.txt")); in TEST_F()
2589 FilePath file2_abs = temp_dir_.GetPath().Append(FPL("file2.txt")); in TEST_F()
2623 EXPECT_TRUE(c2_dotdot.HasFile(temp_dir_.GetPath().Append(FPL("..")))); in TEST_F()
2649 FPL("dir*")); in TEST_F()
2669 FilePath inner2 = dir1.Append(FPL("inner")); in TEST_F()
2671 EXPECT_TRUE(c6.HasFile(inner2.Append(FPL("innerfile.txt")))); in TEST_F()
2672 EXPECT_TRUE(c6.HasFile(dir1.Append(FPL("dir2file.txt")))); in TEST_F()
3292 path = path.Append(FPL("file_util")).Append(FPL("original.txt")); in TEST_F()
3304 path = path.Append(FPL("file_util")).Append(FPL("original.txt")); in TEST_F()