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/profiles/
file_path_verifier_win.cc 30 base::FilePath normalized_path; local
31 if (!file_util::NormalizeFilePath(file, &normalized_path)) {
38 internal::ComparePathsIgnoreCase(file, normalized_path);
  /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/
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 864 base::FilePath::StringType normalized_path = local
938 << " (" << normalized_path << ")"
    [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/webkit/common/fileapi/
file_system_util.cc 124 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;
file_system_util_unittest.cc 99 const base::FilePath::StringType normalized_path; member in struct:fileapi::__anon17233::test_data
113 EXPECT_EQ(test_cases[i].normalized_path, normalized_path_string);
  /external/chromium/base/
file_util_unittest.cc 515 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...]
file_util_posix.cc 798 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
810 *normalized_path = real_path_result;
  /external/chromium_org/base/
file_util_unittest.cc 472 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...]
file_util_posix.cc 691 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
703 *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 76 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/
test.py 611 normalized_path = abspath(path)
612 super(TestRepository, self).__init__(basename(normalized_path))
613 self.path = normalized_path
    [all...]

Completed in 405 milliseconds