/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
retriever.h | 31 class Downloader; 36 // Downloader* downloader = ...; 38 // downloader, storage); 46 // Takes ownership of |downloader| and |storage|. 48 const Downloader* downloader, 59 scoped_ptr<const Downloader> downloader_;
|
retriever.cc | 18 #include <libaddressinput/downloader.h> 40 const Downloader& downloader, 44 downloader_(downloader), 80 const Downloader& downloader_; 82 scoped_ptr<Downloader::Callback> downloaded_; 91 const Downloader* downloader, 94 downloader_(downloader),
|
address_validator.cc | 17 #include <libaddressinput/downloader.h> 31 AddressValidator::AddressValidator(const Downloader* downloader, 35 VALIDATION_DATA_URL, downloader, new ValidatingStorage(storage)))),
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/ |
fake_downloader.h | 15 // A fake downloader object to use in tests. Reads data from a file instead of 21 #include <libaddressinput/downloader.h> 49 // scoped_ptr<Downloader::Callback> callback_; 53 class FakeDownloader : public Downloader { 61 // Downloader implementation.
|
fake_downloader_test.cc | 18 #include <libaddressinput/downloader.h> 29 using i18n::addressinput::Downloader; 40 Downloader::Callback* BuildCallback() { 91 scoped_ptr<Downloader::Callback> callback(BuildCallback()); 109 scoped_ptr<Downloader::Callback> callback(BuildCallback()); 121 scoped_ptr<Downloader::Callback> callback(BuildCallback()); 132 scoped_ptr<Downloader::Callback> callback(BuildCallback()); 143 scoped_ptr<Downloader::Callback> callback(BuildCallback());
|
retriever_test.cc | 18 #include <libaddressinput/downloader.h> 31 using i18n::addressinput::Downloader; 40 // Empty data that the downloader can return. 110 // The downloader that always fails. 111 class FaultyDownloader : public Downloader { 116 // Downloader implementation.
|
/external/chromium_org/chrome/browser/profiles/ |
gaia_info_update_service_unittest.cc | 73 NiceMock<ProfileDownloaderMock> downloader(&service); 76 EXPECT_CALL(downloader, GetProfileFullName()).WillOnce(Return(name)); 79 EXPECT_CALL(downloader, GetProfilePicture()).WillOnce(Return(*bmp)); 80 EXPECT_CALL(downloader, GetProfilePictureStatus()). 83 EXPECT_CALL(downloader, GetProfilePictureURL()).WillOnce(Return(url)); 88 service.OnProfileDownloadSuccess(&downloader); 109 NiceMock<ProfileDownloaderMock> downloader(&service); 111 service.OnProfileDownloadFailure(&downloader, 133 NiceMock<ProfileDownloaderMock> downloader(&service); 135 EXPECT_CALL(downloader, GetProfileFullName()).WillOnce(Return(new_name)) [all...] |
profile_downloader_delegate.h | 46 // query the downloader for the picture and full name. 47 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) = 0; 51 ProfileDownloader* downloader,
|
gaia_info_update_service.h | 39 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE; 41 ProfileDownloader* downloader,
|
gaia_info_update_service.cc | 97 ProfileDownloader* downloader) { 108 base::string16 full_name = downloader->GetProfileFullName(); 109 base::string16 given_name = downloader->GetProfileGivenName(); 110 SkBitmap bitmap = downloader->GetProfilePicture(); 112 downloader->GetProfilePictureStatus(); 113 std::string picture_url = downloader->GetProfilePictureURL(); 154 ProfileDownloader* downloader,
|
/external/chromium_org/chrome/browser/component_updater/ |
crx_downloader.cc | 20 : downloader(kNone), 26 // On Windows, the first downloader in the chain is a background downloader, 94 // If the urls are mutated while this downloader is active, then the 115 // If this downloader has received a 5xx error for the current url, 131 // If there is another downloader that can accept this request, then hand 133 // of urls. Otherwise, the request ends here since the current downloader 134 // has tried all urls and it can't fall back on any other downloader.
|
crx_downloader.h | 32 // that, the download request is routed to the next downloader in the chain. 37 enum Downloader { 47 Downloader downloader; member in struct:component_updater::CrxDownloader::DownloadMetrics 77 // background downloader be used, if the platform supports it.
|
component_updater_ping_manager.cc | 19 // Returns a string literal corresponding to the value of the downloader |d|. 20 const char* DownloaderToString(CrxDownloader::DownloadMetrics::Downloader d) { 108 " downloader=\"%s\"", DownloaderToString(metrics.downloader));
|
url_fetcher_downloader.h | 22 // Implements a CRX downloader in top of the URLFetcher.
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/ |
downloader.h | 29 // class MyDownloader : public Downloader { 38 class Downloader { 42 virtual ~Downloader() {}
|
address_validator.h | 30 class Downloader; 87 // Takes ownership of |downloader| and |storage|, which cannot be NULL. Does 89 AddressValidator(const Downloader* downloader,
|
/external/chromium_org/chrome/browser/managed_mode/ |
custodian_profile_downloader_service.cc | 65 ProfileDownloader* downloader) { 66 download_callback_.Run(downloader->GetProfileFullName()); 72 ProfileDownloader* downloader,
|
custodian_profile_downloader_service.h | 38 virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE; 40 ProfileDownloader* downloader,
|
/external/chromium_org/chrome/browser/extensions/updater/ |
extension_updater_unittest.cc | 533 ExtensionDownloader* downloader) { 535 updater->downloader_.reset(downloader); 538 void StartUpdateCheck(ExtensionDownloader* downloader, 540 downloader->StartUpdateCheck(scoped_ptr<ManifestFetchData>(fetch_data)); 543 size_t ManifestFetchersCount(ExtensionDownloader* downloader) { 544 return downloader->manifests_queue_.size() + 545 (downloader->manifest_fetcher_.get() ? 1 : 0); 656 ExtensionDownloader downloader(&delegate, service.request_context()); 665 downloader.AddExtension(*extensions[0].get(), 0); 666 downloader.StartAllPending() 1488 ExtensionDownloader* downloader = local 1520 ExtensionDownloader* downloader = local [all...] |
/external/chromium_org/chrome/browser/component_updater/test/ |
component_updater_ping_manager_unittest.cc | 143 download_metrics.downloader = CrxDownloader::DownloadMetrics::kUrlFetcher; 152 download_metrics.downloader = CrxDownloader::DownloadMetrics::kBits; 166 "<event eventtype=\"14\" eventresult=\"0\" downloader=\"direct\" " 169 "<event eventtype=\"14\" eventresult=\"1\" downloader=\"bits\" "
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/docs/ |
source_layout.txt | 7 mstools contains a downloader for the Microsoft HLSL compiler
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/docs/ |
source_layout.txt | 7 mstools contains a downloader for the Microsoft HLSL compiler
|
/frameworks/base/core/res/res/raw-da/ |
incognito_mode_start_page.html | 7 <p><strong>Nu er du inkognito</strong>. De sider, du besøger i dette vindue, vises ikke i din browser- eller søgeoversigt, og de efterlader ikke andre spor, såsom cookies, på din enhed, når du lukker incognitovinduet. Filer, som du downloader eller bogmærker, som du opretter, gemmes dog.</p>
|
/frameworks/base/core/res/res/raw-da-xlarge/ |
incognito_mode_start_page.html | 7 <p><strong>Nu er du inkognito</strong>. De sider, du besøger i dette vindue, vises ikke i din browser- eller søgeoversigt, og de efterlader ikke andre spor, såsom cookies, på din enhed, når du lukker incognitovinduet. Filer, som du downloader eller bogmærker, som du opretter, gemmes dog.</p>
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data.cc | 14 DownloadFileProvider* downloader) 16 downloader(downloader) {
|