Searched refs:progress (Results 1 - 25 of 246) sorted by path

12345678910

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DStatusBarController.java42 private final JProgressBar progress = new JProgressBar(); field in class:StatusBarController
51 progress.setPreferredSize(new Dimension(100, 15));
59 panel.add(progress);
84 this.progress.setIndeterminate(value);
88 this.progress.setIndeterminate(false);
89 this.progress.setValue(value);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/blktrace/btt/doc/
H A Dbtt.tex1029 granularity) values describing the progress it is making through the
/external/bzip2/
H A Dbzlib.c67 "possibly monitoring progress in detail with the -vv flag.\n"
409 Bool progress; local
424 progress = handle_compress ( strm );
425 return progress ? BZ_RUN_OK : BZ_PARAM_ERROR;
446 progress = handle_compress ( strm );
456 progress = handle_compress ( strm );
457 if (!progress) return BZ_SEQUENCE_ERROR;
/external/chromium/chrome/browser/chromeos/login/
H A Dupdate_view.cc36 // Y offset for the progress bar.
130 void UpdateView::SetProgress(int progress) { argument
131 progress_bar_->SetProgress(progress);
H A Dupdate_view.h37 // Advances view's progress bar. Maximum progress is 100.
38 void AddProgress(int progress);
40 // Sets the current value for the progress bar. Maximum progress is 100.
41 void SetProgress(int progress);
/external/chromium/chrome/browser/download/
H A Ddownload_status_updater.cc30 float progress = 0; local
31 bool progress_known = GetProgress(&progress);
35 progress);
38 bool DownloadStatusUpdater::GetProgress(float* progress) { argument
39 *progress = 0;
52 *progress = static_cast<float>(received_bytes) / total_bytes;
H A Ddownload_status_updater.h16 // Keeps track of download progress for the entire browser.
34 // If the progress is known (i.e. we know the final size of all downloads),
35 // returns true and puts a percentage (in range [0-1]) in |progress|.
36 bool GetProgress(float* progress);
38 // Returns the number of downloads that are in progress.
H A Ddownload_status_updater_unittest.cc84 float progress = -1; local
85 EXPECT_TRUE(updater_.GetProgress(&progress));
86 EXPECT_FLOAT_EQ(0, progress);
94 float progress = -1; local
95 EXPECT_TRUE(updater_.GetProgress(&progress));
96 EXPECT_FLOAT_EQ(0, progress);
105 float progress = -1; local
106 EXPECT_TRUE(updater_.GetProgress(&progress));
107 EXPECT_FLOAT_EQ(static_cast<float>(1) / 2, progress);
114 float progress local
126 float progress = -1; local
141 float progress = -1; local
150 float progress = -1; local
159 float progress = -1; local
[all...]
H A Ddownload_util.cc352 // Download progress painting --------------------------------------------------
354 // Common bitmaps used for download progress animations. We load them once the
355 // first time we do a progress paint, then reuse them as they are always the
401 // Draw the background progress image.
408 // Layer the foreground progress image in an arc proportional to the download
409 // progress. The arc grows clockwise, starting in the midnight position, as
685 // string we'll end up using for constructing the final progress string.
724 float progress) {
726 // Taskbar progress bar is only supported on Win7.
744 // Iterate through all the browser windows, and draw the progress ba
722 UpdateAppIconDownloadProgress(int download_count, bool progress_known, float progress) argument
[all...]
H A Ddownload_util.h83 // Download progress animations ------------------------------------------------
88 // Rate of progress for use with downloads of unknown size
104 // Our progress halo around the icon.
110 // The offset required to center the icon in the progress bitmaps.
160 // Paint the common download animation progress foreground and background,
164 // |containing_view| is the View subclass within which the progress animation
168 // progress animation within the containing View.
212 // Get the localized status text for an in-progress download.
215 // Update the application icon to indicate overall download progress.
216 // |download_count| is the number of downloads currently in progress
[all...]
/external/chromium/chrome/browser/resources/
H A Dtranslate.js31 function onTranslateProgress(progress, opt_finished, opt_error) {
/external/chromium/chrome/browser/sync/engine/
H A Dconflict_resolver.cc92 // we've made changes, but they won't help syncing progress.
424 const ConflictProgress& progress = status->conflict_progress(); local
427 for (conflicting_item_it = progress.ConflictingItemsBeginConst();
428 conflicting_item_it != progress.ConflictingItemsEnd();
432 progress.IdToConflictSetFind(id);
433 if (item_set_it == progress.IdToConflictSetEnd() ||
463 const ConflictProgress& progress = status->conflict_progress(); local
471 for (set_it = progress.ConflictSetsBegin();
472 set_it != progress.ConflictSetsEnd();
H A Dprocess_updates_command.cc47 const sessions::UpdateProgress& progress(status->update_progress());
49 for (it = progress.VerifiedUpdatesBegin();
50 it != progress.VerifiedUpdatesEnd();
/external/chromium/chrome/browser/tab_contents/
H A Dtab_contents.h966 virtual void DidChangeLoadProgress(double progress);
1162 // Upload progress, for displaying in the status bar.
/external/chromium/chrome/browser/ui/cocoa/
H A Ddock_icon.h18 // Download progress ///////////////////////////////////////////////////////////
20 // Indicates how many downloads are in progress.
23 // Indicates whether the progress indicator should be in an indeterminate state
27 // Indicates the amount of progress made of the download. Ranges from [0..1].
28 - (void)setProgress:(float)progress;
/external/chromium/chrome/browser/ui/gtk/
H A Dbrowser_window_gtk.cc1940 double progress = bookmark_bar_.get() && !bookmark_bar_is_floating_ ? local
1942 size_t width = kDefaultWidth + (kMaxWidth - kDefaultWidth) * progress;
1943 size_t height = kDefaultHeight + (kMaxHeight - kDefaultHeight) * progress;
/external/chromium/chrome/browser/ui/gtk/download/
H A Ddownload_item_gtk.cc102 // an in-progress download that has since completed.
230 // Put the download progress icon on the left of the labels.
444 int progress = static_cast<int>((dangerous_hbox_full_width_ - local
447 int showing_width = dangerous_hbox_start_width_ + progress;
497 // Download progress animation functions.
/external/chromium/chrome/browser/ui/webui/options/
H A Dabout_page_handler.cc357 int progress = static_cast<int>(status.download_progress * 100.0); local
358 if (progress != progress_) {
359 progress_ = progress;
/external/clang/utils/
H A DSummarizeErrors32 def progress(pos): function in function:readInfo
49 progress(m.end())
/external/e2fsprogs/e2fsck/
H A De2fsck.c221 if (ctx->progress)
222 (void) (ctx->progress)(ctx, 0, 0, 0);
H A De2fsck.h226 int (*progress)(e2fsck_t ctx, int pass, unsigned long cur, member in struct:e2fsck_struct
313 * How we display the progress update (for unix)
H A Dpass1.c691 if (ctx->progress)
692 if ((ctx->progress)(ctx, 1, 0, ctx->fs->group_desc_count))
1192 if (ctx->progress)
1193 if ((ctx->progress)(ctx, 1, group+1,
H A Dpass2.c137 if (ctx->progress)
138 (void) (ctx->progress)(ctx, 2, 0, cd.max);
739 if (ctx->progress && (ctx->progress)(ctx, 2, cd->count++, cd->max))
H A Dpass3.c95 if (ctx->progress)
96 if ((ctx->progress)(ctx, 3, 0, maxdirs))
103 if (ctx->progress && (ctx->progress)(ctx, 3, count++, maxdirs))

Completed in 422 milliseconds

12345678910