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

/external/chromium_org/chrome/browser/profiles/
H A Dfile_path_verifier_win.cc30 base::FilePath normalized_path; local
31 if (!file_util::NormalizeFilePath(file, &normalized_path)) {
38 internal::ComparePathsIgnoreCase(file, normalized_path);
/external/chromium_org/base/i18n/
H A Dfile_util_icu_unittest.cc88 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/
H A Dremote_change_handler.cc65 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] =
H A Ddrive_file_sync_service.cc864 base::FilePath::StringType normalized_path = local
938 << " (" << normalized_path << ")"
/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/webkit/common/fileapi/
H A Dfile_system_util.cc124 base::FilePath::StringType normalized_path = path.value(); local
128 std::replace(normalized_path.begin(), normalized_path.end(),
132 return (IsAbsolute(normalized_path)) ?
133 normalized_path : base::FilePath::StringType(kRoot) + normalized_path;
H A Dfile_system_util_unittest.cc99 const base::FilePath::StringType normalized_path; member in struct:fileapi::__anon14836::test_data
113 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
/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/base/
H A Dfile_util_unittest.cc515 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...]
H A Dfile_util_posix.cc798 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { argument
810 *normalized_path = real_path_result;
/external/chromium_org/base/
H A Dfile_util_unittest.cc472 FilePath normalized_path; local
473 ASSERT_TRUE(file_util::NormalizeFilePath(file_txt, &normalized_path));
474 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str());
479 &normalized_path));
480 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str());
488 &normalized_path));
489 ASSERT_STREQ(file_txt.value().c_str(), normalized_path.value().c_str());
502 ASSERT_FALSE(file_util::NormalizeFilePath(long_path, &normalized_path));
507 &normalized_path));
516 &normalized_path));
708 FilePath normalized_path; local
[all...]
H A Dfile_util_posix.cc691 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { argument
703 *normalized_path = real_path_result;
/external/chromium_org/webkit/browser/fileapi/
H A Disolated_context.cc76 base::FilePath normalized_path = path.NormalizePathSeparators(); local
78 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second;
88 fileset_.insert(MountPointInfo(utf8name, normalized_path)).second;
/external/v8/tools/
H A Dtest.py611 normalized_path = abspath(path)
612 super(TestRepository, self).__init__(basename(normalized_path))
613 self.path = normalized_path

Completed in 1117 milliseconds