HomeSort by relevance Sort by last modified time
    Searched refs:normalized_path (Results 1 - 14 of 14) 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 (fileapi::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/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/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/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 903 base::FilePath::StringType normalized_path = local
    [all...]
  /external/chromium_org/webkit/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/
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/webkit/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::__anon11841::test_data
136 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
  /external/chromium_org/content/child/fileapi/
webfilesystem_impl.cc 193 base::FilePath normalized_path(
200 normalized_path.AsUTF16Unsafe(), is_directory),
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_sync_unittest.cc 210 base::FilePath normalized_path = path.NormalizePathSeparators(); local
217 normalized_path,
225 EXPECT_EQ(normalized_path, result_path);
    [all...]

Completed in 167 milliseconds