/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_ui_controller_unittest.cc | 115 // Normal downloads that are constructed in the IN_PROGRESS state should be 124 .WillRepeatedly(Return(content::DownloadItem::IN_PROGRESS)); 142 // Downloads that have a target path on creation and are in the IN_PROGRESS 151 .WillRepeatedly(Return(content::DownloadItem::IN_PROGRESS)); 158 // History downloads (downloads that are not in IN_PROGRESS on create) should
|
download_stats.h | 11 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose);
|
download_ui_controller.h | 22 // This class monitors each IN_PROGRESS download that is created (for which
|
download_status_updater.cc | 74 if ((*it)->GetState() == content::DownloadItem::IN_PROGRESS) { 108 if (item->GetState() == content::DownloadItem::IN_PROGRESS) { 118 if (item->GetState() == content::DownloadItem::IN_PROGRESS) {
|
/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/chrome/browser/download/ |
save_item.cc | 38 state_ = IN_PROGRESS; 53 if (state_ != IN_PROGRESS) { 66 if (state_ != IN_PROGRESS) { 101 case IN_PROGRESS: {
|
base_file_unittest.cc | 34 EXPECT_FALSE(base_file_->in_progress()); 55 ASSERT_TRUE(base_file_->in_progress()); 220 EXPECT_TRUE(base_file_->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 | 144 if (last_state_ == DownloadItem::IN_PROGRESS && 149 new_state == DownloadItem::IN_PROGRESS) { 280 EXPECT_EQ(DownloadItem::IN_PROGRESS, item->GetState()); 304 if (expected_state == DownloadItem::IN_PROGRESS) { 607 CleanupItem(item, download_file, DownloadItem::IN_PROGRESS); 632 CleanupItem(item, mock_download_file, DownloadItem::IN_PROGRESS); 655 CleanupItem(item, download_file, DownloadItem::IN_PROGRESS); 670 CleanupItem(item, mock_download_file, DownloadItem::IN_PROGRESS); 763 ASSERT_EQ(DownloadItem::IN_PROGRESS, item->GetState()); 798 ASSERT_EQ(DownloadItem::IN_PROGRESS, item->GetState()) [all...] |
save_file.cc | 73 return file_.in_progress();
|
download_browsertest.cc | 495 // Filter for saving the size of the download when the first IN_PROGRESS 498 if (download->GetState() != DownloadItem::IN_PROGRESS) 643 ASSERT_EQ(DownloadItem::IN_PROGRESS, download->GetState()); 715 ASSERT_EQ(DownloadItem::IN_PROGRESS, downloads[0]->GetState()); 742 ASSERT_EQ(DownloadItem::IN_PROGRESS, downloads[0]->GetState()); 758 ASSERT_EQ(DownloadItem::IN_PROGRESS, download1->GetState()); 887 // Confirm download still IN_PROGRESS (internal state COMPLETING). 890 EXPECT_EQ(DownloadItem::IN_PROGRESS, items[0]->GetState()); 895 EXPECT_EQ(DownloadItem::IN_PROGRESS, items[0]->GetState()); [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
download_info.py | 57 This includes downloads in all states (COMPLETE, IN_PROGRESS, ...). 70 return [x for x in self.Downloads() if x['state'] == '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;
|
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/ |
JFmRxStatus.java | 22 SUCCESS(0), FAILED(1), PENDING(2), INVALID_PARM(3), IN_PROGRESS(4), NOT_APPLICABLE(5), NOT_SUPPORTED(
|
JFmTxStatus.java | 22 SUCCESS(0), FAILED(1), PENDING(2), INVALID_PARM(3), IN_PROGRESS(4), NOT_APPLICABLE(5), NOT_SUPPORTED(
|
/external/chromium_org/chrome/browser/extensions/api/downloads/ |
downloads_api_browsertest.cc | 259 // State for the download. Note that IN_PROGRESS downloads will be created 365 " \"previous\": \"in_progress\"," 464 1u, observer->NumDownloadsSeenInState(DownloadItem::IN_PROGRESS)); 485 EXPECT_EQ(1u, observer->NumDownloadsSeenInState(DownloadItem::IN_PROGRESS)); 493 if ((*iter)->GetState() == DownloadItem::IN_PROGRESS) { 494 // There should be only one IN_PROGRESS item. 653 return item->GetState() != DownloadItem::IN_PROGRESS; 684 if ((*item)->GetState() == DownloadItem::IN_PROGRESS) 763 return item->GetState() == DownloadItem::IN_PROGRESS; [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/ |
popup.js | 271 var in_progress = (item.state == 'in_progress') 276 item.canResume = in_progress && item.paused; 306 item.getElement('in-progress').hidden = !in_progress; 308 !in_progress || item.paused) ? 'none' : 'inline-block'; 310 !in_progress || !item.canResume) ? 'none' : 'inline-block'; 312 !in_progress ? 'none' : 'inline-block'); 318 item.getElement('erase').hidden = in_progress; 320 var could_progress = in_progress || item.canResume; 392 if (in_progress) { [all...] |
/external/chromium/chrome/browser/history/ |
download_database.h | 36 // Fixes state of the download entries. Sometimes entries with IN_PROGRESS
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
download_handler.cc | 90 // Persisted downloads are not in IN_PROGRESS state when created, while newly 93 download->GetState() != DownloadItem::IN_PROGRESS; 166 if (!download || (download->GetState() != DownloadItem::IN_PROGRESS)) 240 case DownloadItem::IN_PROGRESS:
|
/external/chromium_org/chrome/browser/ui/cocoa/download/ |
download_item_cell_unittest.mm | 62 .WillByDefault(Return(content::DownloadItem::IN_PROGRESS));
|
/external/chromium_org/content/public/test/ |
download_test_observer.h | 190 // IN_PROGRESS state, or when the download manager is destroyed. 196 // download items have entered state |IN_PROGRESS|. 226 // * There are no IN_PROGRESS download items remaining on the 259 // of downloads in the IN_PROGRESS state and take appropriate
|
/frameworks/base/wifi/java/android/net/wifi/ |
WpsResult.java | 31 IN_PROGRESS,
|