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

  /external/chromium_org/chrome/browser/profiles/
file_path_verifier_win.cc 31 if (!base::NormalizeFilePath(file, &normalized_path)) {
  /external/chromium_org/webkit/browser/fileapi/
external_mount_points.cc 22 base::FilePath NormalizeFilePath(const base::FilePath& path) {
103 base::FilePath path = NormalizeFilePath(path_in);
125 path_to_name_map_.erase(NormalizeFilePath(instance->path()));
220 base::FilePath path = NormalizeFilePath(path_in);
  /external/chromium_org/chrome/browser/ui/
network_profile_bubble.cc 132 if (!base::NormalizeFilePath(temp_file, &normalized_temp_file))
  /external/chromium/base/
file_util_unittest.cc 399 ASSERT_FALSE(file_util::NormalizeFilePath(file_a_path,
401 << "NormalizeFilePath() should fail on nonexistent paths.";
405 ASSERT_TRUE(file_util::NormalizeFilePath(file_a_path,
410 ASSERT_TRUE(file_util::NormalizeFilePath(file_b_path,
449 // NormalizeFilePath() fails without crashing.
516 ASSERT_TRUE(file_util::NormalizeFilePath(file_txt, &normalized_path));
521 ASSERT_TRUE(file_util::NormalizeFilePath(to_sub_a.Append(FPL("file.txt")),
527 ASSERT_TRUE(file_util::NormalizeFilePath(base_b.Append(FPL("to_base_b"))
534 // A long enough path will cause NormalizeFilePath() to fail. Make a long
545 ASSERT_FALSE(file_util::NormalizeFilePath(long_path, &normalized_path))
    [all...]
file_util.h 319 BASE_API bool NormalizeFilePath(const FilePath& path, FilePath* real_path);
file_util_posix.cc 49 // Helper for NormalizeFilePath(), defined below.
798 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
file_util_win.cc 36 // Helper for NormalizeFilePath(), defined below.
    [all...]
  /external/chromium_org/base/
file_util_unittest.cc 285 ASSERT_FALSE(NormalizeFilePath(file_a_path, &normalized_file_a_path))
286 << "NormalizeFilePath() should fail on nonexistent paths.";
290 ASSERT_TRUE(NormalizeFilePath(file_a_path, &normalized_file_a_path));
294 ASSERT_TRUE(NormalizeFilePath(file_b_path, &normalized_file_b_path));
332 // NormalizeFilePath() fails without crashing.
376 ASSERT_TRUE(NormalizeFilePath(file_txt, &normalized_path));
381 ASSERT_TRUE(NormalizeFilePath(to_sub_a.Append(FPL("file.txt")),
387 ASSERT_TRUE(NormalizeFilePath(base_b.Append(FPL("to_base_b"))
394 // A long enough path will cause NormalizeFilePath() to fail. Make a long
405 ASSERT_FALSE(NormalizeFilePath(long_path, &normalized_path))
    [all...]
file_util.h 273 BASE_EXPORT bool NormalizeFilePath(const FilePath& path, FilePath* real_path);
file_util_win.cc 391 bool NormalizeFilePath(const FilePath& path, FilePath* real_path) {
file_util_posix.cc 91 // Helper for NormalizeFilePath(), defined below.
626 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.cc 121 // and uses NormalizeFilePath to check if the path is junction free.
131 // NormalizeFilePath requires a non-empty file, so write some data.
138 bool normalized = base::NormalizeFilePath(temp_file, &normalized_temp_file);
295 if (!base::NormalizeFilePath(temp_crx_path, &link_free_crx_path)) {
  /external/chromium/chrome/browser/extensions/
sandboxed_extension_unpacker.cc 128 if (!file_util::NormalizeFilePath(temp_crx_path, &link_free_crx_path)) {

Completed in 148 milliseconds