/external/chromium_org/chrome/renderer/resources/extensions/ |
downloads_custom_bindings.js | 5 // Custom bindings for the downloads API. 7 var binding = require('binding').Binding.create('downloads'); 13 'downloads.onDeterminingFilename',
|
/external/valgrind/main/drd/scripts/ |
download-and-build-splash2 | 3 downloads="$HOME/software/downloads" 12 mkdir -p "${downloads}" 24 cd "$downloads" 33 tar zxf $downloads/splash2.tar.gz 35 gzip -cd < "$downloads/splash2-modified.patch.gz" | patch -p1 -s
|
download-and-build-splash2.in | 3 downloads="$HOME/software/downloads" 12 mkdir -p "${downloads}" 24 cd "$downloads" 33 tar zxf $downloads/splash2.tar.gz 35 gzip -cd < "$downloads/splash2-modified.patch.gz" | patch -p1 -s
|
download-and-build-gcc | 12 DOWNLOADS=$SRCDIR/downloads 43 mkdir -p ${DOWNLOADS} || exit $? 47 if [ ! -e $DOWNLOADS/$TAR ]; then 49 if cd $DOWNLOADS; then 58 ( cd $SRCDIR && tar -xjf $DOWNLOADS/$TAR )
|
/external/chromium_org/chrome/browser/ui/webui/ |
downloads_ui_browsertest.js | 10 * Test C++ fixture for downloads WebUI testing. 17 * Base fixture for Downloads WebUI testing. 27 * Browse to the downloads page & call our preLoad(). 29 browsePreload: 'chrome://downloads', 40 * Sends TOTAL_RESULT_COUNT fake downloads to the page. This can't be called 50 downloads.updated(this.createDownload_(i, timestamp)); 53 expectEquals(downloads.size(), TOTAL_RESULT_COUNT); 128 expectEquals(allowDelete ? 0 : TOTAL_RESULT_COUNT, downloads.size()); 141 * Fixture for Downloads WebUI testing when deletions are prohibited. 165 * Fixture for Downloads WebUI testing for a supervised user [all...] |
downloads_dom_handler.h | 27 // 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.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/ |
popup.js | 302 chrome.downloads.getFileIcon( 328 !chrome.downloads.removeFile); 454 chrome.downloads.drag(this.id); 458 chrome.downloads.show(this.id); 463 chrome.downloads.open(this.id); 470 chrome.downloads.removeFile(this.id); 476 chrome.downloads.erase({id: this.id}); 480 chrome.downloads.pause(this.id); 484 chrome.downloads.resume(this.id); 488 chrome.downloads.cancel(this.id) [all...] |
/external/chromium_org/chrome/browser/safe_browsing/ |
last_download_finder.cc | 32 // 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);
|
last_download_finder.h | 73 // 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);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadScanner.java | 17 package com.android.providers.downloads; 20 import static com.android.providers.downloads.Constants.LOGV; 21 import static com.android.providers.downloads.Constants.TAG; 31 import android.provider.Downloads; 40 * Manages asynchronous scanning of completed downloads. 142 values.put(Downloads.Impl.COLUMN_MEDIA_SCANNED, 1); 144 values.put(Downloads.Impl.COLUMN_MEDIAPROVIDER_URI, uri.toString()); 149 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, req.id);
|
DownloadIdleService.java | 17 package com.android.providers.downloads; 19 import static com.android.providers.downloads.Constants.TAG; 20 import static com.android.providers.downloads.StorageUtils.listFilesRecursive; 29 import android.provider.Downloads; 35 import com.android.providers.downloads.StorageUtils.ConcreteFile; 82 Downloads.Impl._ID, 83 Downloads.Impl.COLUMN_STATUS, 84 Downloads.Impl.COLUMN_LAST_MODIFICATION, 85 Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI }; 91 * Remove stale downloads that third-party apps probably forgot about. W [all...] |
DownloadNotifier.java | 17 package com.android.providers.downloads; 22 import static android.provider.Downloads.Impl.STATUS_RUNNING; 23 import static com.android.providers.downloads.Constants.TAG; 35 import android.provider.Downloads; 53 * states. Collapses similar downloads into a single notification, and builds 75 * Current speed of active downloads, mapped from {@link DownloadInfo#mId} 118 public void updateWith(Collection<DownloadInfo> downloads) { 120 updateWithLocked(downloads); 124 private void updateWithLocked(Collection<DownloadInfo> downloads) { 127 // Cluster downloads togethe [all...] |
OpenHelper.java | 17 package com.android.providers.downloads; 23 import static android.provider.Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI; 24 import static com.android.providers.downloads.Constants.TAG; 33 import android.provider.Downloads.Impl.RequestHeaders;
|
Constants.java | 17 package com.android.providers.downloads; 42 /** The column that is used for the downloads's ETag */ 72 public static final String PROVIDER_PACKAGE_NAME = "com.android.providers.downloads"; 83 /** The default user agent used for downloads */ 169 public static final String STORAGE_AUTHORITY = "com.android.providers.downloads.documents"; 170 public static final String STORAGE_ROOT_ID = "downloads"; 173 * Name of directory on cache partition containing in-progress downloads.
|
RealSystemFacade.java | 17 package com.android.providers.downloads;
|
/external/chromium_org/chrome/browser/resources/downloads/ |
downloads.js | 55 // Downloads 57 * Class to hold all the information about the visible downloads. 60 function Downloads() { 62 this.node_ = $('downloads-display'); 63 this.summary_ = $('downloads-summary-text'); 66 // Keep track of the dates of the newest and oldest downloads so that we 79 Downloads.prototype.updated = function(download) { 85 // We get downloads in display order, so we don't have to worry about 86 // maintaining correct order - we can assume that any downloads not in 99 // change since this may touch 150 elements and Downloads.prototype.update 817 var downloads, resultsTimeout; variable [all...] |
/external/chromium_org/content/browser/download/ |
download_browsertest.cc | 563 // help up by buffering in the underlying downloads ByteStream data 597 // specified number of downloads to finish. 606 // specified number of downloads to start. 682 std::vector<DownloadItem*> downloads; local 683 DownloadManagerForShell(shell())->GetAllDownloads(&downloads); 684 EXPECT_EQ(1u, downloads.size()); 685 if (1u != downloads.size()) 687 return downloads[0]; 751 // Location of the downloads directory for these tests 766 std::vector<DownloadItem*> downloads; local 793 std::vector<DownloadItem*> downloads; local 1697 std::vector<DownloadItem*> downloads; local 1742 std::vector<DownloadItem*> downloads; local 1790 std::vector<DownloadItem*> downloads; local [all...] |
/external/chromium_org/chrome/browser/history/ |
history_unittest.cc | 239 // Initially there should be nothing in the downloads database. 240 std::vector<DownloadRow> downloads; local 241 db_->QueryDownloads(&downloads); 242 EXPECT_EQ(0U, downloads.size()); 249 db_->QueryDownloads(&downloads); 250 EXPECT_EQ(1U, downloads.size()); 253 downloads[0].current_path); 255 downloads[0].target_path); 256 EXPECT_EQ(1UL, downloads[0].url_chain.size()); 257 EXPECT_EQ(GURL("foo-url"), downloads[0].url_chain[0]) 809 std::vector<DownloadRow> downloads; local [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/build/ |
README | 10 * 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/extensions/api/downloads/ |
downloads_api.h | 18 #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 93 DECLARE_EXTENSION_FUNCTION("downloads.download", DOWNLOADS_DOWNLOAD) 102 extensions::api::downloads::FilenameConflictAction 112 DECLARE_EXTENSION_FUNCTION("downloads.search", DOWNLOADS_SEARCH) 125 DECLARE_EXTENSION_FUNCTION("downloads.pause", DOWNLOADS_PAUSE) 138 DECLARE_EXTENSION_FUNCTION("downloads.resume", DOWNLOADS_RESUME) 151 DECLARE_EXTENSION_FUNCTION("downloads.cancel", DOWNLOADS_CANCEL) 164 DECLARE_EXTENSION_FUNCTION("downloads.erase", DOWNLOADS_ERASE [all...] |
/packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/ |
DownloadProviderPermissionsTest.java | 17 package com.android.providers.downloads.permission.tests; 26 import android.provider.Downloads; 70 * {@link com.android.providers.downloads.Manifest.permission#ACCESS_DOWNLOAD_MANAGER} 78 values.put(Downloads.Impl.COLUMN_URI, "foo"); 79 mContentResolver.insert(Downloads.Impl.CONTENT_URI, values); 89 * {@link com.android.providers.downloads.Manifest.permission#ACCESS_DOWNLOAD_MANAGER} 95 downloadServiceIntent.setClassName("com.android.providers.downloads", 96 "com.android.providers.downloads.DownloadService");
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
FakeSystemFacade.java | 1 package com.android.providers.downloads;
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
download_handler.cc | 140 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/content/public/browser/ |
download_manager.h | 7 // the downloads view in the Destinations tab. There is one DownloadManager per 11 // Objects that are interested in notifications about new downloads, or progress 16 // set of all downloads (such as new downloads, or deletes) occur 22 // information about the state of all downloads. The history system maintains a 23 // separate table for this called 'downloads'. At the point that the 25 // all persisted downloads. 56 // Browser's download manager: manages all downloads and destination view. 73 // to the DownloadManager's collection of downloads. 100 // Add all download items to |downloads|, no matter the type or state, withou [all...] |
/external/chromium_org/chrome/browser/download/ |
download_browsertest.cc | 123 std::vector<DownloadItem*> downloads; local 124 manager_->GetAllDownloads(&downloads); 125 if (!downloads.empty()) 520 // directory for downloads that is auto-deleted on destruction. 550 // specified number of downloads to finish. 560 // specified number of downloads to start. 569 // specified number of downloads to finish, or for 794 void GetDownloads(Browser* browser, std::vector<DownloadItem*>* downloads) { 795 DCHECK(downloads); 797 manager->GetAllDownloads(downloads); 1088 content::DownloadManager::DownloadVector downloads; local 1878 std::vector<DownloadItem*> downloads; local 1926 std::vector<DownloadItem*> downloads; local 2034 std::vector<DownloadItem*> downloads; local 2105 content::DownloadManager::DownloadVector downloads; local 2142 content::DownloadManager::DownloadVector downloads; local 2204 content::DownloadManager::DownloadVector downloads; local 2276 std::vector<DownloadItem*> downloads; local 3256 std::vector<DownloadItem*> downloads; local [all...] |