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

  /external/chromium/chrome/browser/chromeos/cros/
update_library.h 33 download_progress(0.0),
40 download_progress(x.download_progress_),
47 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateLibrary::Status
  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_api.cc 76 double download_progress = 0; local
83 // |download_progress| is set to 1 after download finishes
85 // even though |status.download_progress| is 0 in these phases.
101 download_progress = status.download_progress;
105 download_progress = 1;
109 download_progress = 1;
113 download_progress = 1;
122 download_progress = 1;
129 dict->SetDouble(kDownloadProgressKey, download_progress);
    [all...]
system_private_apitest.cc 58 status_updating.download_progress = 0.5;
  /external/chromium_org/chromeos/dbus/
update_engine_client.h 46 download_progress(0.0),
52 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateEngineClient::Status
update_engine_client.cc 225 reader.PopDouble(&status.download_progress) &&
291 status.download_progress = progress;
  /external/chromium/chrome/browser/chromeos/
update_browsertest.cc 53 status.download_progress = 10;
57 status.download_progress = 50;
61 status.download_progress = 90;
88 status.download_progress = 10;
92 status.download_progress = 10;
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen.cc 174 download_start_progress_ = status.download_progress;
175 download_last_progress_ = status.download_progress;
413 std::max(status.download_progress - download_last_progress_, 0.0);
419 download_last_progress_ = status.download_progress;
422 double progress_left = std::max(1.0 - status.download_progress, 0.0);
435 (status.download_progress - download_start_progress_) /
449 int download_progress = static_cast<int>( local
450 status.download_progress * kDownloadProgressIncrement);
451 actor_->SetProgress(kBeforeDownloadProgress + download_progress);
update_screen_browsertest.cc 154 status.download_progress = 0.0;
157 status.download_progress = 0.5;
160 status.download_progress = 1.0;
  /external/chromium/chrome/browser/chromeos/login/
update_screen.cc 118 int download_progress = static_cast<int>( local
119 library->status().download_progress * kDownloadProgressIncrement);
120 view()->SetProgress(kBeforeDownloadProgress + download_progress);
update_screen_browsertest.cc 137 status.download_progress = 0.0;
143 status.download_progress = 0.5;
149 status.download_progress = 1.0;
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store_unittest.cc     [all...]
directory_backing_store.cc 418 info.download_progress[i].SerializeToString(&progress_marker);
620 info->kernel_info.download_progress[type].ParseFromArray(
    [all...]
syncable.cc 292 download_progress[model_type].set_data_type_id(
295 download_progress[model_type].set_token(std::string());
761 kernel_->persisted_info.download_progress[model_type]);
768 kernel_->persisted_info.download_progress[model_type].SerializeToString(
776 kernel_->persisted_info.download_progress[model_type].CopyFrom(new_progress);
    [all...]
syncable.h 692 // Set the |download_progress| entry for the given model to a
698 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncable::Directory::PersistedKernelInfo
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/help/
version_updater_chromeos.cc 188 progress = static_cast<int>(round(status.download_progress * 100));
  /external/chromium_org/chrome/browser/chromeos/drive/
job_scheduler_unittest.cc 853 std::vector<int64> download_progress; local
854 logger.GetProgressInfo(TYPE_DOWNLOAD_FILE, &download_progress);
855 ASSERT_TRUE(!download_progress.empty());
856 EXPECT_TRUE(base::STLIsSorted(download_progress));
857 EXPECT_GE(download_progress.front(), 0);
858 EXPECT_LE(download_progress.back(), 26);
  /external/chromium_org/sync/syncable/
directory_backing_store_unittest.cc     [all...]
directory.cc 51 download_progress[model_type].set_data_type_id(
54 download_progress[model_type].set_token(std::string());
779 kernel_->persisted_info.download_progress[model_type]);
786 kernel_->persisted_info.download_progress[model_type].SerializeToString(
799 kernel_->persisted_info.download_progress[model_type].CopyFrom(new_progress);
    [all...]
directory.h 97 // Set the |download_progress| entry for the given model to a
103 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncer::syncable::Directory::PersistedKernelInfo
directory_backing_store.cc 269 info.download_progress[type].SerializeToString(&progress_marker);
567 info->kernel_info.download_progress[type].ParseFromArray(
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
about_page_handler.cc 357 int progress = static_cast<int>(status.download_progress * 100.0);
  /external/chromium/chrome/browser/automation/
testing_automation_provider_chromeos.cc 108 return_value->SetDouble("download_progress", status.download_progress);

Completed in 976 milliseconds