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

  /external/chromium_org/chrome/browser/extensions/
path_util.cc 68 base::FilePath actual_path = display_path; local
71 actual_path = actual_path.Append(*i);
72 if (actual_path == home_path) {
77 std::string display = GetDisplayBaseName(actual_path);
80 DCHECK_EQ(actual_path.value(), source_path.value());
  /external/chromium_org/base/test/
test_shortcut_win.h 16 // Validates |actual_path|'s LongPathName case-insensitively matches
19 const base::FilePath& actual_path);
test_shortcut_win.cc 23 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();
  /external/chromium_org/chrome/test/ispy/server/
debug_view_handler.py 34 actual_path = ispy_utils.GetFailurePath(test_run, expectation, 'actual.png')
41 data['actual'] = _ImagePath(actual_path)
main_view_handler.py 117 res['actual_path'] = path
  /external/chromium_org/chrome/browser/download/
download_file_picker.cc 34 const base::FilePath& actual_path) {
36 if (suggested_path == actual_path)
38 else if (actual_path.empty())
40 else if (suggested_path.DirName() != actual_path.DirName())
  /external/chromium_org/sandbox/win/src/
win_utils.cc 134 base::string16 actual_path;
135 if (!GetPathFromHandle(handle, &actual_path))
144 if (0 == _wcsicmp(actual_path.c_str(), path.c_str()))
170 if (vol_length + path.size() - (colon_pos + 1) != actual_path.size())
174 if (0 != _wcsnicmp(actual_path.c_str(), vol_name, vol_length))
178 if (0 != _wcsicmp(&actual_path[vol_length], &path[colon_pos + 1]))
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_unittest.cc 141 base::FilePath actual_path; local
142 EXPECT_TRUE(data.GetFilename(&actual_path));
143 EXPECT_EQ(current_directory, actual_path);
  /external/chromium_org/extensions/common/
file_util_unittest.cc 429 base::FilePath actual_path = local
431 EXPECT_FALSE(actual_path.IsAbsolute()) <<
432 " For the path " << actual_path.value();
433 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
496 base::FilePath actual_path = local
498 EXPECT_EQ(expected_path.value(), actual_path.value()) <<
  /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 212 milliseconds