Searched defs:normalized_path (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/
H A Dfile_util_posix.cc798 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { argument
810 *normalized_path = real_path_result;
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...]

Completed in 63 milliseconds