Searched refs:downloads (Results 1 - 25 of 55) sorted by path

123

/external/antlr/antlr-3.4/runtime/JavaScript/build/
H A DREADME10 * ant-contrib: Download ant-contrib here: http://downloads.sourceforge.net/ant-contrib/ant-contrib-1.0b3-bin.zip?modtime=1162486738&big_mirror=0
18 * jsdoc-toolkit: Download the latest release from here: http://code.google.com/p/jsdoc-toolkit/downloads/list
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_remover_browsertest.cc59 std::vector<content::DownloadItem*> downloads; local
60 download_manager->GetAllDownloads(&downloads);
61 EXPECT_EQ(expected, downloads.size());
79 base::FilePath().AppendASCII("downloads"),
96 // Test BrowsingDataRemover for downloads.
106 // Test BrowsingDataRemover for prohibited downloads. Note that this only
/external/chromium_org/chrome/browser/chromeos/drive/
H A Ddownload_handler.cc140 content::DownloadManager::DownloadVector downloads; local
141 download_manager->GetAllDownloads(&downloads);
142 for (size_t i = 0; i < downloads.size(); ++i) {
143 if (IsPersistedDriveDownload(drive_tmp_download_path_, downloads[i]))
144 downloads[i]->Remove();
251 // Only accept downloads that have the Drive meta data associated with them.
272 // Interrupted downloads can be resumed. Keep the Drive user data around
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dpath_util.cc64 const base::FilePath downloads = GetDownloadsFolderForProfile(profile); local
69 downloads));
71 downloads));
86 bases.push_back(std::make_pair(hashed_downloads, downloads));
H A Dvolume_manager.cc94 return "downloads";
259 // Note: Preferences related to downloads are handled in download_prefs.cc.
272 const base::FilePath downloads = local
274 const bool success = RegisterDownloadsMountPoint(profile_, downloads);
278 CreateDownloadsVolumeInfo(downloads));
/external/chromium_org/chrome/browser/download/
H A Ddownload_browsertest.cc128 std::vector<DownloadItem*> downloads; local
129 manager_->GetAllDownloads(&downloads);
130 if (!downloads.empty())
524 // directory for downloads that is auto-deleted on destruction.
554 // specified number of downloads to finish.
564 // specified number of downloads to start.
573 // specified number of downloads to finish, or for
797 void GetDownloads(Browser* browser, std::vector<DownloadItem*>* downloads) { argument
798 DCHECK(downloads);
800 manager->GetAllDownloads(downloads);
1091 content::DownloadManager::DownloadVector downloads; local
1881 std::vector<DownloadItem*> downloads; local
1930 std::vector<DownloadItem*> downloads; local
2038 std::vector<DownloadItem*> downloads; local
2109 content::DownloadManager::DownloadVector downloads; local
2146 content::DownloadManager::DownloadVector downloads; local
2208 content::DownloadManager::DownloadVector downloads; local
2280 std::vector<DownloadItem*> downloads; local
3424 std::vector<DownloadItem*> downloads; local
3456 std::vector<DownloadItem*> downloads; local
3473 std::vector<DownloadItem*> downloads; local
3503 std::vector<DownloadItem*> downloads; local
[all...]
H A Ddownload_service.cc22 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
106 DownloadManager::DownloadVector downloads; local
107 download_manager->GetAllDownloads(&downloads);
108 for (DownloadManager::DownloadVector::iterator it = downloads.begin();
109 it != downloads.end();
H A Dsave_page_browsertest.cc54 // Waits for an item record in the downloads database to match |filter|. See
103 // Waits for an item record to be removed from the downloads database.
409 std::vector<DownloadItem*> downloads; local
410 manager->GetAllDownloads(&downloads);
411 ASSERT_EQ(0u, downloads.size());
474 std::vector<DownloadItem*> downloads; local
475 manager->GetAllDownloads(&downloads);
476 ASSERT_EQ(0u, downloads.size());
701 std::vector<DownloadItem*> downloads; local
702 manager->GetAllDownloads(&downloads);
[all...]
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api.cc5 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
46 #include "chrome/common/extensions/api/downloads.h"
103 const char kOpenPermission[] = "The \"downloads.open\" permission is required";
105 const char kShelfPermission[] = "downloads.setShelfEnabled requires the "
106 "\"downloads.shelf\" permission";
121 namespace downloads = api::downloads;
169 // corresponding change to downloads.json.
185 // corresponding change to downloads.json.
480 const downloads
[all...]
H A Ddownloads_api.h17 #include "chrome/common/extensions/api/downloads.h"
35 // Functions in the chrome.downloads namespace facilitate
36 // controlling downloads from extensions. See the full API doc at
95 DECLARE_EXTENSION_FUNCTION("downloads.download", DOWNLOADS_DOWNLOAD)
104 extensions::api::downloads::FilenameConflictAction
114 DECLARE_EXTENSION_FUNCTION("downloads.search", DOWNLOADS_SEARCH)
127 DECLARE_EXTENSION_FUNCTION("downloads.pause", DOWNLOADS_PAUSE)
140 DECLARE_EXTENSION_FUNCTION("downloads.resume", DOWNLOADS_RESUME)
153 DECLARE_EXTENSION_FUNCTION("downloads.cancel", DOWNLOADS_CANCEL)
166 DECLARE_EXTENSION_FUNCTION("downloads
[all...]
H A Ddownloads_api_browsertest.cc22 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
67 namespace downloads = api::downloads;
123 if (((event_name_ == downloads::OnDeterminingFilename::kEventName) ||
124 (event_name_ == downloads::OnCreated::kEventName) ||
125 (event_name_ == downloads::OnChanged::kEventName)) &&
146 } else if ((event_name_ == downloads::OnErased::kEventName) &&
257 // temporary downloads directory specified by downloads_directory().
260 // State for the download. Note that IN_PROGRESS downloads will be created
280 ->AddEventListener(downloads
[all...]
/external/chromium_org/chrome/browser/extensions/api/downloads_internal/
H A Ddownloads_internal_api.cc7 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
8 #include "chrome/common/extensions/api/downloads.h"
34 extensions::api::downloads::ParseFilenameConflictAction(
/external/chromium_org/chrome/browser/extensions/api/streams_private/
H A Dstreams_private_apitest.cc157 // Setup default downloads directory to the scoped tmp directory created for
225 // The |manager| should have |download| in its list of downloads.
261 // There should be no downloads started by the navigation.
263 std::vector<DownloadItem*> downloads; local
264 download_manager->GetAllDownloads(&downloads);
265 ASSERT_EQ(0u, downloads.size());
303 // There should be no downloads started by the navigation.
305 std::vector<DownloadItem*> downloads; local
306 download_manager->GetAllDownloads(&downloads);
307 ASSERT_EQ(0u, downloads
336 DownloadManager::DownloadVector downloads; local
388 std::vector<DownloadItem*> downloads; local
425 std::vector<DownloadItem*> downloads; local
[all...]
/external/chromium_org/chrome/browser/history/
H A Dhistory_unittest.cc240 // Initially there should be nothing in the downloads database.
241 std::vector<DownloadRow> downloads; local
242 db_->QueryDownloads(&downloads);
243 EXPECT_EQ(0U, downloads.size());
250 db_->QueryDownloads(&downloads);
251 EXPECT_EQ(1U, downloads.size());
254 downloads[0].current_path);
256 downloads[0].target_path);
257 EXPECT_EQ(1UL, downloads[0].url_chain.size());
258 EXPECT_EQ(GURL("foo-url"), downloads[
810 std::vector<DownloadRow> downloads; local
[all...]
/external/chromium_org/chrome/browser/net/
H A Dchrome_network_delegate.cc737 const base::FilePath downloads = profile_path_.AppendASCII("Downloads");
738 if (downloads == path.StripTrailingSeparators() || downloads.IsParent(path))
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.css7 #downloads-summary-text {
16 #downloads-actions > a,
17 #downloads-actions > .disabled-link {
21 #downloads-actions > a:first-child {
25 #open-downloads-folder {
29 #downloads-display {
147 #downloads-pagination {
H A Ddownloads.js84 * Class to hold all the information about the visible downloads.
93 this.node_ = $('downloads-display');
94 this.summary_ = $('downloads-summary-text');
97 // Keep track of the dates of the newest and oldest downloads so that we
125 // We get downloads in display order, so we don't have to worry about
126 // maintaining correct order - we can assume that any downloads not in
171 * Returns the number of downloads in the model. Used by tests.
172 * @return {number} Returns the number of downloads shown on the page.
208 * Clear all downloads and reset us back to a null state.
252 * @param {Array} downloads Arra
864 var downloads, resultsTimeout; variable
[all...]
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.cc32 // non-opened for downloads that completed at the same time (extraordinarily
48 // Returns a pointer to the most interesting completed download in |downloads|.
50 const std::vector<history::DownloadRow>& downloads) {
52 for (size_t i = 0; i < downloads.size(); ++i) {
53 const history::DownloadRow& row = downloads[i];
54 // Ignore incomplete downloads.
193 scoped_ptr<std::vector<history::DownloadRow> > downloads) {
202 const history::DownloadRow* profile_best = FindMostInteresting(*downloads);
49 FindMostInteresting( const std::vector<history::DownloadRow>& downloads) argument
191 OnDownloadQuery( Profile* profile, scoped_ptr<std::vector<history::DownloadRow> > downloads) argument
H A Dlast_download_finder.h73 // Abandons the search for downloads in |profile|, reporting results if there
78 // executable download from |downloads| and reports results if there are no
82 scoped_ptr<std::vector<history::DownloadRow> > downloads);
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_close_browsertest.cc50 int downloads; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon5037::__anon5038
54 int downloads; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon5037::__anon5039
61 int downloads; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon5040::__anon5041
65 int downloads; member in struct:BrowserCloseTest::DownloadsCloseCheckCase::__anon5040::__anon5042
110 // Create |num_downloads| number of downloads that are stalled
113 // browser with active downloads.
120 // Setup an observer waiting for the given number of downloads
128 // Set of that number of downloads.
141 // All all downloads created in CreateStalledDownloads() to
148 // no active downloads o
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/
H A Ddock_icon.h31 // Indicates how many downloads are in progress.
32 - (void)setDownloads:(int)downloads;
/external/chromium_org/chrome/browser/ui/webui/
H A Ddownloads_dom_handler.cc34 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
58 // Maximum number of downloads to show. TODO(glen): Remove this and instead
59 // stuff the downloads down the pipe slowly.
117 // progress. The difference currently only matters to Drive downloads and
118 // those don't show up on the downloads page, but should.
122 // chrome/browser/resources/downloads/downloads.js in @typedef for
239 // Filters out extension downloads and downloads that don't have a filename yet.
353 // at all downloads, an
581 CallDownloadsList(const base::ListValue& downloads) argument
[all...]
H A Ddownloads_dom_handler.h27 // The handler for Javascript messages related to the "downloads" view,
87 // Callback for the "clearAll" message - clears all the downloads.
90 // Callback for the "openDownloadsFolder" message - opens the downloads
99 virtual void CallDownloadsList(const base::ListValue& downloads);
111 // Sends the current list of downloads to the page.
H A Ddownloads_dom_handler_browsertest.cc88 virtual void CallDownloadsList(const base::ListValue& downloads) OVERRIDE {
89 downloads_list_.reset(downloads.DeepCopy());
137 GURL url = test_server()->GetURL("files/downloads/image.jpg");
225 // Tests that DownloadsDOMHandler detects new downloads and relays them to the
247 // TODO(benjhayden): Test the extension downloads filter for both
256 // TODO(benjhayden): Test that IsTemporary() downloads are not shown.
H A Ddownloads_ui_browsertest.js10 * Test C++ fixture for downloads WebUI testing.
27 * Browse to the downloads page & call our preLoad().
29 browsePreload: 'chrome://downloads/',
46 * Sends TOTAL_RESULT_COUNT fake downloads to the page. This can't be called
56 downloads.updated(this.createDownload_(i, timestamp));
59 expectEquals(downloads.size(), TOTAL_RESULT_COUNT);
134 expectEquals(allowDelete ? 0 : TOTAL_RESULT_COUNT, downloads.size());

Completed in 500 milliseconds

123