Searched refs:normalized_path (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_status.cc49 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/chrome/browser/profiles/
H A Dfile_path_verifier_win.cc34 base::FilePath normalized_path; local
36 if (!base::NormalizeFilePath(file, &normalized_path)) {
43 internal::ComparePathsIgnoreCase(file, normalized_path);
/external/chromium_org/tools/findit/
H A Dcrash_utils.py191 normalized_path = os.path.normpath(path).replace('\\', '/')
208 if new_component_path in normalized_path or \
209 lower_component_path in normalized_path:
212 if lower_component_path in normalized_path:
219 normalized_path = normalized_path.split(current_component_path, 1)[1]
220 lower_normalized_path = normalized_path.lower()
232 normalized_path = (current_component_path.split('/')[-2] + '/' +
233 normalized_path)
236 normalized_path
[all...]
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsyncable_file_system_util_unittest.cc89 const base::FilePath normalized_path = CreateNormalizedFilePath(kPath); local
91 kNonRegisteredFileSystemRootURI + normalized_path.AsUTF8Unsafe();
93 kNonSyncableFileSystemRootURI + normalized_path.AsUTF8Unsafe();
/external/chromium_org/base/i18n/
H A Dfile_util_icu_unittest.cc91 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/storage/common/fileapi/
H A Dfile_system_util.cc126 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/tools/grit/grit/
H A Dutil.py73 normalized_path = os.path.normpath(path_without_prefix.strip(os.path.sep))
74 if normalized_path == '.':
75 normalized_path = ''
76 return normalized_path
/external/chromium_org/base/files/
H A Dfile_util_unittest.cc368 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...]
H A Dfile_util_posix.cc597 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { argument
609 *normalized_path = real_path_result;
/external/chromium_org/storage/browser/fileapi/
H A Disolated_context.cc65 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/content/common/fileapi/
H A Dfile_system_util_unittest.cc122 const base::FilePath::StringType normalized_path; member in struct:content::__anon7575::test_data
136 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
/external/chromium_org/content/child/fileapi/
H A Dwebfilesystem_impl.cc245 base::FilePath normalized_path(
251 normalized_path.AsUTF16Unsafe(), is_directory),
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_sync_unittest.cc212 base::FilePath normalized_path = path.NormalizePathSeparators(); local
219 normalized_path,
226 EXPECT_EQ(normalized_path, result_path);

Completed in 2767 milliseconds