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 77 double download_progress = 0; local
84 // |download_progress| is set to 1 after download finishes
86 // even though |status.download_progress| is 0 in these phases.
102 download_progress = status.download_progress;
106 download_progress = 1;
110 download_progress = 1;
114 download_progress = 1;
123 download_progress = 1;
130 dict->SetDouble(kDownloadProgressKey, download_progress);
    [all...]
system_private_apitest.cc 60 status_updating.download_progress = 0.5;
  /external/chromium_org/chromeos/dbus/
update_engine_client.h 43 download_progress(0.0),
49 double download_progress; // 0.0 - 1.0 member in struct:chromeos::UpdateEngineClient::Status
update_engine_client.cc 240 reader.PopDouble(&status.download_progress) &&
307 status.download_progress = progress;
397 last_status_.download_progress = 0.0;
426 if (last_status_.download_progress >= 1.0) {
430 last_status_.download_progress += 0.01;
  /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 168 download_start_progress_ = status.download_progress;
169 download_last_progress_ = status.download_progress;
403 std::max(status.download_progress - download_last_progress_, 0.0);
409 download_last_progress_ = status.download_progress;
412 double progress_left = std::max(1.0 - status.download_progress, 0.0);
425 (status.download_progress - download_start_progress_) /
439 int download_progress = static_cast<int>( local
440 status.download_progress * kDownloadProgressIncrement);
441 actor_->SetProgress(kBeforeDownloadProgress + download_progress);
update_screen_browsertest.cc 155 status.download_progress = 0.0;
158 status.download_progress = 0.5;
161 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 952 std::vector<int64> download_progress; local
953 logger.GetProgressInfo(TYPE_DOWNLOAD_FILE, &download_progress);
954 ASSERT_TRUE(!download_progress.empty());
955 EXPECT_TRUE(base::STLIsSorted(download_progress));
956 EXPECT_GE(download_progress.front(), 0);
957 EXPECT_LE(download_progress.back(), 26);
    [all...]
  /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 99 // Set the |download_progress| entry for the given model to a
105 sync_pb::DataTypeProgressMarker download_progress[MODEL_TYPE_COUNT]; member in struct:syncer::syncable::Directory::PersistedKernelInfo
directory_backing_store.cc 271 info.download_progress[type].SerializeToString(&progress_marker);
569 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 1004 milliseconds