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

  /external/chromium/chrome/browser/download/
download_file_manager.cc 349 int uniquifier = 0; local
359 uniquifier = download_util::GetUniquePathNumber(new_path);
360 if (uniquifier > 0) {
361 download_util::AppendNumberToPath(&new_path, uniquifier);
383 new_path, uniquifier));
download_item.h 246 void set_path_uniquifier(int uniquifier) { path_uniquifier_ = uniquifier; }
284 // target_name_ possibly with the uniquifier number.
download_manager.cc 385 // Do not add the path uniquifier if we are saving to a specific path as in
666 int uniquifier) {
669 << " uniquifier = " << uniquifier;
677 DCHECK_EQ(0, uniquifier) << "We should not uniquify SAFE downloads twice";
685 if (uniquifier)
686 item->set_path_uniquifier(uniquifier);
    [all...]
download_manager_unittest.cc 542 int uniquifier = download_util::GetUniquePathNumber(new_path); local
544 EXPECT_NE(0, uniquifier);
545 download_util::AppendNumberToPath(&unique_new_path, uniquifier);
download_manager.h 144 // |uniquifier| is a number used to make unique names for the file. It is
148 int uniquifier);

Completed in 112 milliseconds