Searched refs:new_path (Results 51 - 75 of 81) sorted by relevance

1234

/external/chromium_org/media/tools/layout_tests/
H A Dlayouttest_analyzer_helpers.py412 new_path = DEFAULT_TEST_EXPECTATION_PATH
414 new_path = LEGACY_DEFAULT_TEST_EXPECTATION_PATH
419 link = REVISION_LOG_URL % (new_path, old_rev, new_rev)
/external/chromium_org/sandbox/win/src/
H A Dfilesystem_policy.cc375 bool PreProcessName(const std::wstring& path, std::wstring* new_path) { argument
376 ConvertToLongPath(path, new_path);
379 if (ERROR_SUCCESS != IsReparsePoint(*new_path, &reparsed))
/external/opencv/otherlibs/highgui/
H A Dloadsave.cpp129 char* new_path = new char[new_size];
133 memcpy( new_path, m_path, m_len );
137 m_path = new_path;
/external/chromium_org/chrome/browser/download/
H A Ddownload_target_determiner.h155 const base::FilePath& new_path,
H A Ddownload_path_reservation_tracker.cc252 // with |key| to |new_path|.
253 void UpdateReservation(ReservationKey key, const base::FilePath& new_path) { argument
258 iter->second = new_path;
H A Ddownload_target_determiner.cc234 base::FilePath new_path(download_prefs_->DownloadPath().Append(
239 net::GenerateSafeFileName(std::string(), false, &new_path); local
240 virtual_path_ = new_path;
H A Ddownload_history_unittest.cc550 base::FilePath new_path(FILE_PATH_LITERAL("/foo/baz.txt"));
556 EXPECT_CALL(item(0), GetFullPath()).WillRepeatedly(ReturnRefOfCopy(new_path));
557 info.current_path = new_path;
563 .WillRepeatedly(ReturnRefOfCopy(new_path));
564 info.target_path = new_path;
H A Ddownload_target_determiner_unittest.cc452 base::FilePath new_path = local
456 if (new_path.MatchesExtension(FILE_PATH_LITERAL(".remove")))
457 new_path = new_path.RemoveExtension();
458 callback.Run(new_path, DownloadPathReservationTracker::UNIQUIFY);
/external/chromium_org/content/browser/download/
H A Dbase_file.h121 const base::FilePath& new_path);
H A Ddownload_item_impl.cc1551 void DownloadItemImpl::SetFullPath(const base::FilePath& new_path) { argument
1554 << " new_path = \"" << new_path.value() << "\""
1556 DCHECK(!new_path.empty());
1560 base::Bind(&ItemRenamedNetLogCallback, &current_path_, &new_path));
1562 current_path_ = new_path;
H A Ddownload_item_impl.h365 void SetFullPath(const base::FilePath& new_path);
/external/chromium/net/tools/dump_cache/
H A Dcache_dumper.cc75 std::string new_path = local
77 entry_path_ = FilePath(ASCIIToWide(new_path));
/external/chromium_org/base/debug/
H A Dstack_trace_win.cc173 std::wstring new_path(std::wstring(symbols_path) +
175 if (!SymSetSearchPathW(GetCurrentProcess(), new_path.c_str())) {
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dmove_operation.cc118 const base::FilePath& new_path) {
128 observer_->OnDirectoryChangedByOperation(new_path.DirName());
114 MoveAfterAddToDirectory( const FileOperationCallback& callback, scoped_ptr<EntryInfoPairResult> src_dest_info, FileError error, const base::FilePath& new_path) argument
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager_browsertest.cc124 base::FilePath new_path = profile_manager->GenerateNextProfileDirectoryPath(); local
125 profile_manager->CreateProfileAsync(new_path,
/external/chromium_org/content/common/
H A Dchild_process_host_impl.cc67 base::FilePath new_path = root_path.Append(new_basename_app) local
72 return new_path;
/external/chromium_org/net/tools/dump_cache/
H A Dcache_dumper.cc84 std::string new_path = local
86 entry_path_ = base::FilePath::FromUTF8Unsafe(new_path);
/external/chromium_org/chrome/common/extensions/
H A Dextension.cc219 std::string new_path = relative_path; local
222 if (!new_path.empty() && new_path.at(0) == '/')
223 new_path.erase(0, 1);
224 base::FilePath relative_file_path = base::FilePath::FromUTF8Unsafe(new_path);
/external/chromium_org/third_party/lcov-1.9/bin/
H A Dlcov3526 my $new_path;
3571 ($common, $old_path, $new_path) =
3575 return ($diff_data->{$diff_name}, $old_path, $new_path);
3595 my $new_path;
3606 $new_path = $path_conversion_data->{$filename};
3608 ($new_path =~ s/^(.*)\/[^\/]+$/$1/) &&
3609 ($filename ne $new_path))
3611 $path_conversion_data->{$filename} = $new_path;
3628 $new_path = $path_conversion_data->{$_}.$1;
3632 if ($trace_data->{$new_path})
[all...]
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_controller.cc764 std::vector<MenuItemView*> new_path; local
766 &new_path, &paths_differ_at);
769 size_t new_size = new_path.size();
794 new_path[i]->ScrollRectToVisible(new_path[i]->GetLocalBounds());
795 new_path[i]->SetSelected(true);
1428 std::vector<MenuItemView*> new_path; local
1430 &new_path, &paths_differ_at);
1464 if (new_path.size() > 1) {
1465 for (std::vector<MenuItemView*>::iterator i = new_path
1563 BuildPathsAndCalculateDiff( MenuItemView* old_item, MenuItemView* new_item, std::vector<MenuItemView*>* old_path, std::vector<MenuItemView*>* new_path, size_t* first_diff_at) argument
[all...]
H A Dmenu_controller.h365 std::vector<MenuItemView*>* new_path,
/external/linux-tools-perf/util/
H A Dprobe-event.c268 char **new_path)
278 *new_path = strdup(raw_path);
285 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
286 if (!*new_path)
290 sprintf(*new_path, "%s/%s", prefix, raw_path);
292 if (access(*new_path, R_OK) == 0)
306 free(*new_path);
307 *new_path = NULL;
313 free(*new_path);
314 *new_path
267 get_real_path(const char *raw_path, const char *comp_dir, char **new_path) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata.cc743 base::FilePath new_path = local
745 new_path =
746 new_path.InsertBeforeExtension(base::StringPrintf(" (%d)", ++modifier));
748 DCHECK_NE(new_base_name, new_path.AsUTF8Unsafe());
749 new_base_name = new_path.AsUTF8Unsafe();
/external/chromium/chrome/browser/extensions/
H A Dextension_management_browsertest.cc96 FilePath new_path = service->extensions()->back()->path(); local
100 EXPECT_NE(old_path.value(), new_path.value());
/external/chromium_org/chrome/browser/extensions/api/management/
H A Dmanagement_browsertest.cc91 base::FilePath new_path = extension->path(); local
94 EXPECT_NE(old_path.value(), new_path.value());

Completed in 713 milliseconds

1234