Home
last modified time | relevance | path

Searched refs:in_progress (Results 1 – 25 of 44) sorted by relevance

12

/external/chromium_org/chrome/browser/download/
Ddownload_stats.cc9 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose) { in RecordDownloadShelfClose() argument
15 "Download.ShelfInProgressSizeOnAutoClose", in_progress, kMaxShelfSize); in RecordDownloadShelfClose()
20 "Download.ShelfInProgressSizeOnUserClose", in_progress, kMaxShelfSize); in RecordDownloadShelfClose()
Ddownload_stats.h13 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_primitive_restart.c153 if (brw->prim_restart.in_progress) { in brw_handle_primitive_restart()
167 brw->prim_restart.in_progress = true; in brw_handle_primitive_restart()
182 brw->prim_restart.in_progress = false; in brw_handle_primitive_restart()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_primitive_restart.c153 if (brw->prim_restart.in_progress) { in brw_handle_primitive_restart()
167 brw->prim_restart.in_progress = true; in brw_handle_primitive_restart()
182 brw->prim_restart.in_progress = false; in brw_handle_primitive_restart()
/external/smack/src/org/jivesoftware/smackx/filetransfer/
DOutgoingFileTransfer.java226 if (!updateStatus(Status.negotiated, Status.in_progress)) { in sendFile()
253 updateStatus(Status.in_progress, FileTransfer.Status.complete); in sendFile()
297 if (!updateStatus(Status.negotiated, Status.in_progress)) { in sendStream()
320 updateStatus(Status.in_progress, FileTransfer.Status.complete); in sendStream()
DIncomingFileTransfer.java134 setStatus(Status.in_progress); in recieveFile()
148 if (getStatus().equals(Status.in_progress)) { in recieveFile()
DFileTransfer.java297 in_progress("In Progress"), enumConstant
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
Dpopup.js282 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) {
/external/chromium/chrome/browser/download/
Dbase_file_unittest.cc34 EXPECT_FALSE(base_file_->in_progress()); in TearDown()
55 ASSERT_TRUE(base_file_->in_progress()); in AppendDataToFile()
220 EXPECT_TRUE(base_file_->in_progress()); in TEST_F()
Ddownload_file_unittest.cc69 EXPECT_FALSE((*file)->in_progress()); in DestroyDownloadFile()
86 EXPECT_TRUE((*file)->in_progress()); in AppendDataToFile()
Dbase_file.cc92 bool saved_in_progress = in_progress(); in Rename()
173 if (!calculate_hash_ || in_progress()) in GetSha256Hash()
Dsave_file_manager.cc429 !save_file->in_progress()); in CancelSave()
448 if (!save_file->in_progress()) in SaveLocalFile()
504 DCHECK(!save_file->in_progress()); in RenameAllFiles()
539 DCHECK(!save_file->in_progress()); in RemoveSavedFileFromFileMap()
Dbase_file.h58 bool in_progress() const { return file_stream_ != NULL; } in in_progress() function
/external/chromium_org/chrome/browser/extensions/updater/
Dextension_updater.cc122 : in_progress(true), in ThrottleInfo()
126 bool in_progress; member
402 if (info.in_progress) in CheckExtensionSoon()
422 info.in_progress = true; in CheckExtensionSoon()
440 it->second.in_progress = false; in ExtensionCheckFinished()
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit.h64 virtual void OnInputInProgress(bool in_progress) = 0;
174 void SetInputInProgress(bool in_progress);
Dautocomplete_edit.cc363 void AutocompleteEditModel::SetInputInProgress(bool in_progress) { in SetInputInProgress() argument
364 if (user_input_in_progress_ == in_progress) in SetInputInProgress()
367 user_input_in_progress_ = in_progress; in SetInputInProgress()
368 controller_->OnInputInProgress(in_progress); in SetInputInProgress()
Dautocomplete_edit_unittest.cc83 virtual void OnInputInProgress(bool in_progress) OVERRIDE {} in OnInputInProgress() argument
/external/chromium_org/content/browser/download/
Dsave_file.cc73 return file_.in_progress(); in InProgress()
Dbase_file_unittest.cc63 EXPECT_FALSE(base_file_->in_progress()); in TearDown()
120 EXPECT_EQ(expect_in_progress_, base_file_->in_progress()); in AppendDataToFile()
127 if (base_file_->in_progress()) { in AppendDataToFile()
450 EXPECT_TRUE(base_file_->in_progress()); in TEST_F()
Dbase_file.h84 bool in_progress() const { return file_stream_.get() != NULL; } in in_progress() function
Dbase_file.cc162 bool was_in_progress = in_progress(); in Rename()
229 return (calculate_hash_ && !in_progress()); in GetHash()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
Dnasm-pp.c69 int in_progress; member
98 int in_progress; member
2148 searching.in_progress = FALSE; in if_condition()
2383 (istk->mstk && !istk->mstk->in_progress)) && in do_directive()
2997 defining->in_progress = FALSE; in do_directive()
3209 defining->in_progress = i; in do_directive()
3261 l->finishes->in_progress = 0; in do_directive()
3410 smac->in_progress = FALSE; in do_directive()
3535 smac->in_progress = FALSE; in do_directive()
3646 smac->in_progress = FALSE; in do_directive()
[all …]
/external/chromium/chrome/browser/ui/views/location_bar/
Dlocation_bar_view.h87 virtual void OnInputInProgress(bool in_progress) = 0;
204 virtual void OnInputInProgress(bool in_progress) OVERRIDE;
/external/chromium_org/chrome/browser/ui/omnibox/
Domnibox_edit_model.cc489 void OmniboxEditModel::SetInputInProgress(bool in_progress) { in SetInputInProgress() argument
490 if (in_progress && !user_input_since_focus_) { in SetInputInProgress()
497 if (user_input_in_progress_ == in_progress) in SetInputInProgress()
500 user_input_in_progress_ = in_progress; in SetInputInProgress()
511 controller_->GetToolbarModel()->set_input_in_progress(in_progress); in SetInputInProgress()
/external/chromium/chrome/browser/ui/views/
Dtoolbar_view.cc314 void ToolbarView::OnInputInProgress(bool in_progress) { in OnInputInProgress() argument
316 DCHECK(model_->input_in_progress() != in_progress); in OnInputInProgress()
318 model_->set_input_in_progress(in_progress); in OnInputInProgress()

12