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

1 2

  /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_stats.h 13 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose);
  /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/chrome/browser/download/
base_file.h 58 bool in_progress() const { return file_stream_ != NULL; } function in class:BaseFile
base_file.cc 92 bool saved_in_progress = in_progress();
173 if (!calculate_hash_ || in_progress())
download_file_unittest.cc 69 EXPECT_FALSE((*file)->in_progress());
86 EXPECT_TRUE((*file)->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());
save_file_manager.cc 429 !save_file->in_progress());
448 if (!save_file->in_progress())
504 DCHECK(!save_file->in_progress());
539 DCHECK(!save_file->in_progress());
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
IncomingFileTransfer.java 134 setStatus(Status.in_progress);
148 if (getStatus().equals(Status.in_progress)) {
OutgoingFileTransfer.java 226 if (!updateStatus(Status.negotiated, Status.in_progress)) {
253 updateStatus(Status.in_progress, FileTransfer.Status.complete);
297 if (!updateStatus(Status.negotiated, Status.in_progress)) {
320 updateStatus(Status.in_progress, FileTransfer.Status.complete);
FileTransfer.java 297 in_progress("In Progress"), enum constant in enum:FileTransfer.Status
  /external/chromium_org/content/browser/download/
save_file.cc 73 return file_.in_progress();
base_file.h 84 bool in_progress() const { return file_stream_.get() != NULL; } function in class:content::BaseFile
base_file_unittest.cc 63 EXPECT_FALSE(base_file_->in_progress());
120 EXPECT_EQ(expect_in_progress_, base_file_->in_progress());
127 if (base_file_->in_progress()) {
450 EXPECT_TRUE(base_file_->in_progress());
base_file.cc 162 bool was_in_progress = in_progress();
229 return (calculate_hash_ && !in_progress());
  /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/chrome/browser/ui/cocoa/location_bar/
location_bar_view_mac.h 136 virtual void OnInputInProgress(bool in_progress);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit.h 64 virtual void OnInputInProgress(bool in_progress) = 0;
174 void SetInputInProgress(bool in_progress);
autocomplete_edit_unittest.cc 83 virtual void OnInputInProgress(bool in_progress) OVERRIDE {}
  /external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.h 87 virtual void OnInputInProgress(bool in_progress) = 0;
204 virtual void OnInputInProgress(bool in_progress) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater.cc 122 : in_progress(true),
126 bool in_progress; member in struct:extensions::ExtensionUpdater::ThrottleInfo
402 if (info.in_progress)
422 info.in_progress = true;
440 it->second.in_progress = false;
  /external/chromium/chrome/browser/ui/views/
toolbar_view.h 100 virtual void OnInputInProgress(bool in_progress) OVERRIDE;
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_android.h 163 void SetSetupInProgress(JNIEnv* env, jobject obj, jboolean in_progress);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 69 int in_progress; member in struct:SMacro
80 * In a MMacro describing a `%rep' block, the `in_progress' field
98 int in_progress; member in struct:MMacro
    [all...]

Completed in 663 milliseconds

1 2