Searched defs:actual_path (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/base/test/
H A Dtest_shortcut_win.cc23 const base::FilePath& actual_path) {
27 // If |expected_path| is empty confirm immediately that |actual_path| is also
30 EXPECT_TRUE(actual_path.empty());
39 actual_path.value().c_str(), long_actual_path_chars, MAX_PATH))
40 << "Failed to get LongPathName of " << actual_path.value();
22 ValidatePathsAreEqual(const base::FilePath& expected_path, const base::FilePath& actual_path) argument
/external/chromium_org/chrome/browser/download/
H A Ddownload_file_picker.cc36 const base::FilePath& actual_path) {
38 if (suggested_path == actual_path)
40 else if (actual_path.empty())
42 else if (suggested_path.DirName() != actual_path.DirName())
35 RecordFilePickerResult(const base::FilePath& suggested_path, const base::FilePath& actual_path) argument
/external/chromium_org/extensions/common/
H A Dfile_util_unittest.cc486 base::FilePath actual_path = local
488 EXPECT_FALSE(actual_path.IsAbsolute()) <<
489 " For the path " << actual_path.value();
490 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
553 base::FilePath actual_path = local
555 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dfile_system_api.cc114 base::FilePath actual_path = display_path; local
117 actual_path = actual_path.Append(*i);
118 if (actual_path == home_path) {
123 std::string display = GetDisplayBaseName(actual_path);
126 DCHECK_EQ(actual_path.value(), source_path.value());

Completed in 97 milliseconds