Home
last modified time | relevance | path

Searched refs:actual_path (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/extensions/common/
Dfile_util_unittest.cc47 base::FilePath actual_path = in TEST_F() local
49 EXPECT_FALSE(actual_path.IsAbsolute()) << in TEST_F()
50 " For the path " << actual_path.value(); in TEST_F()
51 EXPECT_EQ(expected_path.value(), actual_path.value()) << in TEST_F()
114 base::FilePath actual_path = in TEST_F() local
116 EXPECT_EQ(expected_path.value(), actual_path.value()) << in TEST_F()
/external/chromium_org/chrome/browser/download/
Ddownload_file_picker.cc37 const base::FilePath& actual_path) { in RecordFilePickerResult() argument
39 if (suggested_path == actual_path) in RecordFilePickerResult()
41 else if (actual_path.empty()) in RecordFilePickerResult()
43 else if (suggested_path.DirName() != actual_path.DirName()) in RecordFilePickerResult()
/external/chromium_org/base/test/
Dtest_shortcut_win.cc27 const base::FilePath& actual_path) { in ValidatePathsAreEqual() argument
34 EXPECT_TRUE(actual_path.empty()); in ValidatePathsAreEqual()
43 actual_path.value().c_str(), long_actual_path_chars, MAX_PATH)) in ValidatePathsAreEqual()
44 << "Failed to get LongPathName of " << actual_path.value(); in ValidatePathsAreEqual()
/external/chromium_org/sandbox/win/src/
Dwin_utils.cc133 base::string16 actual_path; in SameObject() local
134 if (!GetPathFromHandle(handle, &actual_path)) in SameObject()
143 if (0 == _wcsicmp(actual_path.c_str(), path.c_str())) in SameObject()
169 if (vol_length + path.size() - (colon_pos + 1) != actual_path.size()) in SameObject()
173 if (0 != _wcsnicmp(actual_path.c_str(), vol_name, vol_length)) in SameObject()
177 if (0 != _wcsicmp(&actual_path[vol_length], &path[colon_pos + 1])) in SameObject()
/external/chromium_org/chrome/test/functional/ispy/server/
Ddebug_view_handler.py34 actual_path = ispy_utils.GetFailurePath(test_run, expectation, 'actual.png')
41 data['actual'] = _ImagePath(actual_path)
/external/chromium/chrome/common/extensions/
Dextension_file_util_unittest.cc232 FilePath actual_path = in TEST() local
234 EXPECT_FALSE(actual_path.IsAbsolute()) << in TEST()
235 " For the path " << actual_path.value(); in TEST()
236 EXPECT_EQ(expected_path.value(), actual_path.value()) << in TEST()
/external/chromium_org/chrome/browser/extensions/api/file_system/
Dfile_system_api.cc108 base::FilePath actual_path = display_path; in PrettifyPath() local
111 actual_path = actual_path.Append(*i); in PrettifyPath()
112 if (actual_path == home_path) { in PrettifyPath()
117 std::string display = GetDisplayBaseName(actual_path); in PrettifyPath()
120 DCHECK_EQ(actual_path.value(), source_path.value()); in PrettifyPath()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dmock_drt.py238actual_path = port._filesystem.join(self._options.actual_directory, test_input.test_name)
239 root, _ = port._filesystem.splitext(actual_path)