HomeSort by relevance Sort by last modified time
    Searched refs:normalized_path (Results 1 - 13 of 13) sorted by null

  /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/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/tools/findit/
crash_utils.py 191 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 = 'src/' + normalized_pat
    [all...]
  /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/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/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/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...]
file_util_posix.cc 597 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
609 *normalized_path = real_path_result;
  /external/chromium_org/tools/grit/grit/
util.py 73 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/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/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/content/child/fileapi/
webfilesystem_impl.cc 245 base::FilePath normalized_path(
251 normalized_path.AsUTF16Unsafe(), is_directory),
  /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...]

Completed in 157 milliseconds