/external/chromium_org/base/i18n/ |
file_util_icu_unittest.cc | 91 const char* normalized_path; member in struct:base::i18n::normalize_name_encoding_test_cases 104 EXPECT_EQ(FilePath(kNormalizeFileNameEncodingTestCases[i].normalized_path),
|
/external/chromium_org/chrome/browser/sync_file_system/ |
syncable_file_system_util_unittest.cc | 89 const base::FilePath normalized_path = CreateNormalizedFilePath(kPath); local 91 kNonRegisteredFileSystemRootURI + normalized_path.AsUTF8Unsafe(); 93 kNonSyncableFileSystemRootURI + normalized_path.AsUTF8Unsafe();
|
/external/chromium_org/chrome/browser/profiles/ |
file_path_verifier_win.cc | 34 base::FilePath normalized_path; local 36 if (!base::NormalizeFilePath(file, &normalized_path)) { 43 internal::ComparePathsIgnoreCase(file, normalized_path);
|
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_sync_status.cc | 49 base::FilePath normalized_path = NormalizePath(path); local 51 // Check if |paths| has a child of |normalized_path|. 52 // Note that descendants of |normalized_path| are stored right after 53 // |normalized_path| since |normalized_path| has trailing path separator. 55 paths.upper_bound(normalized_path); 58 normalized_path.IsParent(get_key_helper.GetKey(upper))) 61 // Check if any ancestor of |normalized_path| is in |writing_|. 63 if (ContainsKey(paths, normalized_path)) 66 if (storage::VirtualPath::IsRootPath(normalized_path)) 88 base::FilePath normalized_path = NormalizePath(url.path()); local 109 base::FilePath normalized_path = NormalizePath(url.path()); local [all...] |
/external/chromium_org/content/common/fileapi/ |
file_system_util_unittest.cc | 122 const base::FilePath::StringType normalized_path; member in struct:content::__anon12200::test_data 136 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
|
/external/chromium_org/storage/common/fileapi/ |
file_system_util.cc | 126 base::FilePath::StringType normalized_path = path.value(); local 130 std::replace(normalized_path.begin(), normalized_path.end(), 134 return (IsAbsolute(normalized_path)) ? 135 normalized_path : base::FilePath::StringType(kRoot) + normalized_path;
|
/external/chromium_org/storage/browser/fileapi/ |
isolated_context.cc | 65 base::FilePath normalized_path = path.NormalizePathSeparators(); local 67 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second; 79 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second;
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
drive_backend_sync_unittest.cc | 212 base::FilePath normalized_path = path.NormalizePathSeparators(); local 219 normalized_path, 226 EXPECT_EQ(normalized_path, result_path); [all...] |
/external/chromium_org/base/files/ |
file_util_unittest.cc | 368 FilePath normalized_path; local 384 ASSERT_TRUE(NormalizeFilePath(file_txt, &normalized_path)); 385 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 390 &normalized_path)); 391 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 399 &normalized_path)); 400 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str()); 413 ASSERT_FALSE(NormalizeFilePath(long_path, &normalized_path)); 418 &normalized_path)); 425 &normalized_path)); 596 FilePath normalized_path; local [all...] |