/external/chromium_org/base/i18n/ |
file_util_icu_unittest.cc | 88 const char* normalized_path; member in struct:normalize_name_encoding_test_cases 102 base::FilePath(kNormalizeFileNameEncodingTestCases[i].normalized_path),
|
/external/chromium_org/chrome/browser/profiles/ |
file_path_verifier_win.cc | 30 base::FilePath normalized_path; local 31 if (!base::NormalizeFilePath(file, &normalized_path)) { 38 internal::ComparePathsIgnoreCase(file, normalized_path);
|
/external/chromium_org/chrome/browser/sync_file_system/ |
syncable_file_system_util_unittest.cc | 90 const base::FilePath normalized_path = CreateNormalizedFilePath(kPath); local 92 kNonRegisteredFileSystemRootURI + normalized_path.AsUTF8Unsafe(); 94 kNonSyncableFileSystemRootURI + normalized_path.AsUTF8Unsafe();
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/ |
remote_change_handler.cc | 65 const base::FilePath::StringType& normalized_path = local 69 DCHECK(ContainsKey(*path_to_change, normalized_path)); 70 *remote_change = (*path_to_change)[normalized_path].remote_change; 93 base::FilePath::StringType normalized_path = local 98 PathToChangeMap::iterator found = path_to_change->find(normalized_path); 109 (*path_to_change)[normalized_path] =
|
drive_file_sync_service.cc | 1021 base::FilePath::StringType normalized_path = local [all...] |
/external/chromium_org/webkit/common/fileapi/ |
file_system_util_unittest.cc | 99 const base::FilePath::StringType normalized_path; member in struct:fileapi::__anon15428::test_data 113 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
|
file_system_util.cc | 125 base::FilePath::StringType normalized_path = path.value(); local 129 std::replace(normalized_path.begin(), normalized_path.end(), 133 return (IsAbsolute(normalized_path)) ? 134 normalized_path : base::FilePath::StringType(kRoot) + normalized_path;
|
/external/chromium_org/webkit/browser/fileapi/ |
isolated_context.cc | 76 base::FilePath normalized_path = path.NormalizePathSeparators(); local 78 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second; 90 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second;
|
/external/chromium/base/ |
file_util_unittest.cc | 515 FilePath normalized_path; local 516 ASSERT_TRUE(file_util::NormalizeFilePath(file_txt, &normalized_path)); 517 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 522 &normalized_path)); 523 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 531 &normalized_path)); 532 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 545 ASSERT_FALSE(file_util::NormalizeFilePath(long_path, &normalized_path)); 550 &normalized_path)); 559 &normalized_path)); 605 FilePath normalized_path; local [all...] |
/external/chromium_org/base/ |
file_util_unittest.cc | 360 FilePath normalized_path; local 376 ASSERT_TRUE(NormalizeFilePath(file_txt, &normalized_path)); 377 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 382 &normalized_path)); 383 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 391 &normalized_path)); 392 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 405 ASSERT_FALSE(NormalizeFilePath(long_path, &normalized_path)); 410 &normalized_path)); 417 &normalized_path)); 607 FilePath normalized_path; local [all...] |