Home
last modified time | relevance | path

Searched refs:in_progress (Results 1 – 25 of 30) 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()
Dbrw_context.c366 brw->prim_restart.in_progress = false; in brwCreateContext()
/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()
Dbrw_context.c366 brw->prim_restart.in_progress = false; in brwCreateContext()
/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_org/chrome/browser/sync/
Dstartup_controller.cc78 void StartupController::set_setup_in_progress(bool in_progress) { in set_setup_in_progress() argument
79 setup_in_progress_ = in_progress; in set_setup_in_progress()
Dstartup_controller.h65 void set_setup_in_progress(bool in_progress);
Dprofile_sync_service_android.h163 void SetSetupInProgress(JNIEnv* env, jobject obj, jboolean in_progress);
Dprofile_sync_service_android.cc416 JNIEnv* env, jobject obj, jboolean in_progress) { in SetSetupInProgress() argument
418 sync_service_->SetSetupInProgress(in_progress); in SetSetupInProgress()
/external/chromium_org/chrome/browser/ui/sync/
Done_click_signin_sync_observer_unittest.cc59 void set_first_setup_in_progress(bool in_progress) { in set_first_setup_in_progress() argument
60 first_setup_in_progress_ = in_progress; in set_first_setup_in_progress()
Done_click_signin_helper_unittest.cc194 void set_first_setup_in_progress(bool in_progress) { in set_first_setup_in_progress() argument
195 first_setup_in_progress_ = in_progress; in set_first_setup_in_progress()
/external/chromium_org/chrome/browser/extensions/updater/
Dextension_updater.cc124 : in_progress(true), in ThrottleInfo()
128 bool in_progress; member
408 if (info.in_progress) in CheckExtensionSoon()
428 info.in_progress = true; in CheckExtensionSoon()
446 it->second.in_progress = false; in ExtensionCheckFinished()
/external/chromium_org/content/browser/download/
Dsave_file.cc72 return file_.in_progress(); in InProgress()
Dbase_file_unittest.cc62 EXPECT_FALSE(base_file_->in_progress()); in TearDown()
119 EXPECT_EQ(expect_in_progress_, base_file_->in_progress()); in AppendDataToFile()
126 if (base_file_->in_progress()) { in AppendDataToFile()
447 EXPECT_TRUE(base_file_->in_progress()); in TEST_F()
Dbase_file.h83 bool in_progress() const { return file_.IsValid(); } in in_progress() function
Dbase_file.cc150 bool was_in_progress = in_progress(); in Rename()
218 return (calculate_hash_ && !in_progress()); in GetHash()
Ddownload_file_impl.cc185 return file_.in_progress(); in InProgress()
/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_org/chrome/browser/ui/omnibox/
Domnibox_edit_model.cc500 void OmniboxEditModel::SetInputInProgress(bool in_progress) { in SetInputInProgress() argument
501 if (in_progress && !user_input_since_focus_) { in SetInputInProgress()
508 if (user_input_in_progress_ == in_progress) in SetInputInProgress()
511 user_input_in_progress_ = in_progress; in SetInputInProgress()
524 if (chrome::ShouldDisplayOriginChip() && in_progress) in SetInputInProgress()
527 controller_->GetToolbarModel()->set_input_in_progress(in_progress); in SetInputInProgress()
Domnibox_edit_model.h149 void SetInputInProgress(bool in_progress);

12