/external/chromium_org/chrome/browser/download/ |
download_item_model.h | 75 int64 GetTotalBytes() const;
|
download_status_updater.cc | 75 if ((*it)->GetTotalBytes() <= 0) { 80 total_bytes += (*it)->GetTotalBytes();
|
download_query.cc | 161 static int GetTotalBytes(const DownloadItem& item) { 162 return item.GetTotalBytes(); 304 return AddFilter(BuildFilter<int>(value, EQ, &GetTotalBytes)); 306 return AddFilter(BuildFilter<int>(value, GT, &GetTotalBytes)); 308 return AddFilter(BuildFilter<int>(value, LT, &GetTotalBytes)); 429 sorters_.push_back(Sorter::Build<int>(direction, &GetTotalBytes));
|
download_item_model.cc | 302 int64 total = GetTotalBytes(); 415 int64 DownloadItemModel::GetTotalBytes() const { 417 download_->GetTotalBytes(); 568 int64 total = GetTotalBytes();
|
download_query_unittest.cc | 507 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2)); 508 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(1)); 515 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2)); 516 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4)); 523 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2)); 524 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4)); 531 EXPECT_CALL(mock(0), GetTotalBytes()).WillRepeatedly(Return(2)); 532 EXPECT_CALL(mock(1), GetTotalBytes()).WillRepeatedly(Return(4));
|
download_item_model_unittest.cc | 71 ON_CALL(item_, GetTotalBytes()).WillByDefault(Return(2)); 281 int64 total_bytes; // Return value of GetTotalBytes(). 293 // For GetReceivedBytes()/GetTotalBytes(), we only check whether each is 334 EXPECT_CALL(item(), GetTotalBytes())
|
download_status_updater_unittest.cc | 150 EXPECT_CALL(*item, GetTotalBytes())
|
download_history.cc | 122 item->GetTotalBytes(),
|
download_history_unittest.cc | 422 EXPECT_CALL(item(index), GetTotalBytes()) 575 EXPECT_CALL(item(0), GetTotalBytes()).WillRepeatedly(Return(102));
|
/external/chromium_org/content/public/browser/ |
download_item.h | 270 virtual int64 GetTotalBytes() const = 0;
|
/external/chromium_org/content/public/test/ |
mock_download_item.h | 70 MOCK_CONST_METHOD0(GetTotalBytes, int64());
|
/external/chromium_org/media/base/ |
pipeline.h | 179 int64 GetTotalBytes() const;
|
pipeline_unittest.cc | 375 EXPECT_EQ(0, pipeline_->GetTotalBytes()); 560 EXPECT_EQ(kTotalBytes, pipeline_->GetTotalBytes()); [all...] |
pipeline.cc | 185 int64 Pipeline::GetTotalBytes() const {
|
/external/chromium_org/content/browser/download/ |
download_item_impl.h | 139 virtual int64 GetTotalBytes() const OVERRIDE;
|
download_item_impl_unittest.cc | [all...] |
download_manager_impl_unittest.cc | 141 MOCK_CONST_METHOD0(GetTotalBytes, int64());
|
download_item_impl.cc | 683 int64 DownloadItemImpl::GetTotalBytes() const { 806 GetTotalBytes(), [all...] |
download_browsertest.cc | 668 EXPECT_EQ(total_bytes, download->GetTotalBytes()); [all...] |
/external/chromium/webkit/glue/ |
webmediaplayer_impl.cc | 521 return pipeline_->GetTotalBytes() != 0; 627 return pipeline_->GetTotalBytes();
|
/external/chromium_org/chrome/browser/extensions/ |
webstore_installer.cc | 651 int64 total_bytes = download->GetTotalBytes();
|
/external/chromium_org/chrome/browser/ui/webui/ |
downloads_dom_handler.cc | 161 download_item->GetTotalBytes()));
|
/external/chromium_org/chrome/browser/extensions/api/downloads/ |
downloads_api.cc | 262 json->SetInteger(kTotalBytesKey, download_item->GetTotalBytes()); 293 json->SetInteger(kFileSizeKey, download_item->GetTotalBytes()); [all...] |