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

  /external/chromium_org/extensions/common/
file_util_unittest.cc 47 base::FilePath actual_path = local
49 EXPECT_FALSE(actual_path.IsAbsolute()) <<
50 " For the path " << actual_path.value();
51 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
114 base::FilePath actual_path = local
116 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
  /external/chromium_org/chrome/test/functional/ispy/server/
debug_view_handler.py 34 actual_path = ispy_utils.GetFailurePath(test_run, expectation, 'actual.png')
41 data['actual'] = _ImagePath(actual_path)
  /external/chromium_org/chrome/browser/download/
download_file_picker.cc 37 const base::FilePath& actual_path) {
39 if (suggested_path == actual_path)
41 else if (actual_path.empty())
43 else if (suggested_path.DirName() != actual_path.DirName())
  /external/chromium_org/base/test/
test_shortcut_win.cc 24 // Validates |actual_path|'s LongPathName case-insensitively matches
27 const base::FilePath& actual_path) {
31 // If |expected_path| is empty confirm immediately that |actual_path| is also
34 EXPECT_TRUE(actual_path.empty());
43 actual_path.value().c_str(), long_actual_path_chars, MAX_PATH))
44 << "Failed to get LongPathName of " << actual_path.value();
  /external/chromium_org/sandbox/win/src/
win_utils.cc 133 base::string16 actual_path;
134 if (!GetPathFromHandle(handle, &actual_path))
143 if (0 == _wcsicmp(actual_path.c_str(), path.c_str()))
169 if (vol_length + path.size() - (colon_pos + 1) != actual_path.size())
173 if (0 != _wcsnicmp(actual_path.c_str(), vol_name, vol_length))
177 if (0 != _wcsicmp(&actual_path[vol_length], &path[colon_pos + 1]))
  /external/chromium/chrome/common/extensions/
extension_file_util_unittest.cc 232 FilePath actual_path = local
234 EXPECT_FALSE(actual_path.IsAbsolute()) <<
235 " For the path " << actual_path.value();
236 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api.cc 108 base::FilePath actual_path = display_path; local
111 actual_path = actual_path.Append(*i);
112 if (actual_path == home_path) {
117 std::string display = GetDisplayBaseName(actual_path);
120 DCHECK_EQ(actual_path.value(), source_path.value());
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 238 actual_path = port._filesystem.join(self._options.actual_directory, test_input.test_name)
239 root, _ = port._filesystem.splitext(actual_path)

Completed in 195 milliseconds