HomeSort by relevance Sort by last modified time
    Searched full:in_progress (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/browser/download/
download_stats.cc 9 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose) {
15 "Download.ShelfInProgressSizeOnAutoClose", in_progress, kMaxShelfSize);
20 "Download.ShelfInProgressSizeOnUserClose", in_progress, kMaxShelfSize);
download_browsertest.h 12 // from IN_PROGRESS to another state, but only after StartObserving() is called.
download_ui_controller.cc 41 // The Android DownloadController is only interested in IN_PROGRESS downloads.
44 if (item->GetState() != content::DownloadItem::IN_PROGRESS)
download_status_updater.cc 73 if ((*it)->GetState() == content::DownloadItem::IN_PROGRESS) {
107 if (item->GetState() == content::DownloadItem::IN_PROGRESS) {
117 if (item->GetState() == content::DownloadItem::IN_PROGRESS) {
download_status_updater_mac.mm 218 // Only show progress if the download is IN_PROGRESS and it hasn't been
222 if (download->GetState() == content::DownloadItem::IN_PROGRESS &&
235 if (download->GetState() != content::DownloadItem::IN_PROGRESS &&
download_item_model_unittest.cc 76 .WillByDefault(Return(DownloadItem::IN_PROGRESS));
94 DownloadItem::IN_PROGRESS :
298 // that is in IN_PROGRESS state. Go through all of them and check the return
390 { DownloadItem::IN_PROGRESS, false, false, false, false},
391 { DownloadItem::IN_PROGRESS, false, true , false, true },
392 { DownloadItem::IN_PROGRESS, true , false, false, false},
393 { DownloadItem::IN_PROGRESS, true , true , false, false},
download_stats.h 13 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose);
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipErrorCode.java 55 public static final int IN_PROGRESS = -9;
86 case IN_PROGRESS:
87 return "IN_PROGRESS";
  /external/chromium_org/content/browser/download/
save_item.cc 39 state_ = IN_PROGRESS;
54 if (state_ != IN_PROGRESS) {
67 if (state_ != IN_PROGRESS) {
102 case IN_PROGRESS: {
download_item_impl_unittest.cc 139 if (last_state_ == DownloadItem::IN_PROGRESS &&
144 new_state == DownloadItem::IN_PROGRESS) {
275 EXPECT_EQ(DownloadItem::IN_PROGRESS, item->GetState());
299 if (expected_state == DownloadItem::IN_PROGRESS) {
633 CleanupItem(item, download_file, DownloadItem::IN_PROGRESS);
658 CleanupItem(item, mock_download_file, DownloadItem::IN_PROGRESS);
681 CleanupItem(item, download_file, DownloadItem::IN_PROGRESS);
696 CleanupItem(item, mock_download_file, DownloadItem::IN_PROGRESS);
789 ASSERT_EQ(DownloadItem::IN_PROGRESS, item->GetState());
824 ASSERT_EQ(DownloadItem::IN_PROGRESS, item->GetState())
    [all...]
save_file.cc 72 return file_.in_progress();
  /external/chromium_org/chrome/browser/local_discovery/
privetv3_crypto_provider.cc 54 : state_(IN_PROGRESS) {
71 DCHECK(state_ == IN_PROGRESS);
privetv3_crypto_provider.h 20 IN_PROGRESS,
  /external/chromium_org/chrome/browser/history/
download_row.cc 12 state(content::DownloadItem::IN_PROGRESS),
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_primitive_restart.c 150 /* If we have set the in_progress flag, then we are in the middle
153 if (brw->prim_restart.in_progress) {
167 brw->prim_restart.in_progress = true;
182 brw->prim_restart.in_progress = false;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_primitive_restart.c 150 /* If we have set the in_progress flag, then we are in the middle
153 if (brw->prim_restart.in_progress) {
167 brw->prim_restart.in_progress = true;
182 brw->prim_restart.in_progress = false;
  /external/chromium_org/mojo/public/tools/bindings/generators/
mojom_python_generator.py 182 in_progress = set()
206 if constant in in_progress:
208 in_progress.add(constant)
214 in_progress.remove(constant)
221 if field in in_progress:
223 in_progress.add(field)
234 in_progress.remove(field)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
popup.js 282 var in_progress = (item.state == 'in_progress')
287 item.canResume = in_progress && item.paused;
317 item.getElement('in-progress').hidden = !in_progress;
319 !in_progress || item.paused) ? 'none' : 'inline-block';
321 !in_progress || !item.canResume) ? 'none' : 'inline-block';
323 !in_progress ? 'none' : 'inline-block');
329 item.getElement('erase').hidden = in_progress;
331 var could_progress = in_progress || item.canResume;
403 if (in_progress) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api_browsertest.cc 260 // State for the download. Note that IN_PROGRESS downloads will be created
363 " \"previous\": \"in_progress\","
462 1u, observer->NumDownloadsSeenInState(DownloadItem::IN_PROGRESS));
484 EXPECT_EQ(1u, observer->NumDownloadsSeenInState(DownloadItem::IN_PROGRESS));
492 if ((*iter)->GetState() == DownloadItem::IN_PROGRESS) {
493 // There should be only one IN_PROGRESS item.
655 return item->GetState() != DownloadItem::IN_PROGRESS;
686 if ((*item)->GetState() == DownloadItem::IN_PROGRESS)
765 return item->GetState() == DownloadItem::IN_PROGRESS;
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_item_cell_unittest.mm 62 .WillByDefault(Return(content::DownloadItem::IN_PROGRESS));
download_item_mac.mm 52 case DownloadItem::IN_PROGRESS:
  /external/chromium_org/content/public/test/
download_test_observer.h 191 // IN_PROGRESS state, or when the download manager is destroyed.
197 // download items have entered state |IN_PROGRESS|.
227 // * There are no IN_PROGRESS download items remaining on the
260 // of downloads in the IN_PROGRESS state and take appropriate
  /frameworks/base/wifi/java/android/net/wifi/
WpsResult.java 31 IN_PROGRESS,
  /external/chromium_org/components/proximity_auth/
connection_unittest.cc 98 connection.SetStatus(Connection::IN_PROGRESS);
104 connection.SetStatus(Connection::IN_PROGRESS);
208 connection.SetStatus(Connection::IN_PROGRESS);
bluetooth_connection_unittest.cc 122 EXPECT_CALL(*connection, SetStatusProxy(Connection::IN_PROGRESS));
127 EXPECT_EQ(Connection::IN_PROGRESS, connection->status());
138 EXPECT_CALL(*connection, SetStatusProxy(Connection::IN_PROGRESS));
222 EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));
262 EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));
383 EXPECT_CALL(connection, SetStatusProxy(Connection::IN_PROGRESS));

Completed in 510 milliseconds

1 2 3 4 5 6 7