Home | History | Annotate | Download | only in base

Lines Matching refs:file_name_to

1068   FilePath file_name_to = temp_dir_.path().Append(
1070 ASSERT_FALSE(base::PathExists(file_name_to));
1072 EXPECT_TRUE(base::Move(file_name_from, file_name_to));
1076 EXPECT_TRUE(base::PathExists(file_name_to));
1087 FilePath file_name_to = temp_dir_.path().Append(
1089 CreateTextFile(file_name_to, L"Old file content");
1090 ASSERT_TRUE(base::PathExists(file_name_to));
1092 EXPECT_TRUE(base::Move(file_name_from, file_name_to));
1096 EXPECT_TRUE(base::PathExists(file_name_to));
1097 EXPECT_TRUE(L"Gooooooooooooooooooooogle" == ReadTextFile(file_name_to));
1133 FilePath file_name_to =
1144 EXPECT_TRUE(base::PathExists(file_name_to));
1148 file_name_to = dir_name_to.Append(FILE_PATH_LITERAL(".."));
1149 file_name_to = file_name_to.Append(txt_file_name);
1150 EXPECT_FALSE(base::Move(file_name_from, file_name_to));
1152 EXPECT_FALSE(base::PathExists(file_name_to));
1153 EXPECT_TRUE(base::internal::MoveUnsafe(file_name_from, file_name_to));
1155 EXPECT_TRUE(base::PathExists(file_name_to));
1177 FilePath file_name_to =
1190 EXPECT_TRUE(base::PathExists(file_name_to));
1221 FilePath file_name_to =
1238 EXPECT_TRUE(base::PathExists(file_name_to));
1274 FilePath file_name_to =
1293 EXPECT_TRUE(base::PathExists(file_name_to));
1326 FilePath file_name_to =
1341 EXPECT_TRUE(base::PathExists(file_name_to));
1373 FilePath file_name_to =
1390 EXPECT_TRUE(base::PathExists(file_name_to));
1402 FilePath file_name_to = temp_dir_.path().Append(
1404 ASSERT_FALSE(base::PathExists(file_name_to));
1406 EXPECT_TRUE(base::CopyDirectory(file_name_from, file_name_to, true));
1409 EXPECT_TRUE(base::PathExists(file_name_to));
1420 FilePath file_name_to = temp_dir_.path().Append(
1422 CreateTextFile(file_name_to, L"Old file content");
1423 ASSERT_TRUE(base::PathExists(file_name_to));
1425 EXPECT_TRUE(base::CopyDirectory(file_name_from, file_name_to, true));
1428 EXPECT_TRUE(base::PathExists(file_name_to));
1429 EXPECT_TRUE(L"Gooooooooooooooooooooogle" == ReadTextFile(file_name_to));
1444 FilePath file_name_to =
1450 EXPECT_TRUE(base::PathExists(file_name_to));
1469 FilePath file_name_to =
1487 EXPECT_TRUE(base::PathExists(file_name_to));
1641 FilePath file_name_to =
1653 EXPECT_TRUE(base::PathExists(file_name_to));