/external/jpeg/ |
cdjpeg.c | 62 * Optional progress monitor: display a percent-done figure on stderr. 70 cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress; 89 start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress) 91 /* Enable progress display, unless trace output is on */ 93 progress->pub.progress_monitor = progress_monitor; 94 progress->completed_extra_passes = 0; 95 progress->total_extra_passes = 0; 96 progress->percent_done = -1; 97 cinfo->progress = &progress->pub [all...] |
jcapistd.c | 87 /* Call progress monitor hook if present */ 88 if (cinfo->progress != NULL) { 89 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 90 cinfo->progress->pass_limit = (long) cinfo->image_height; 91 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); 132 /* Call progress monitor hook if present */ 133 if (cinfo->progress != NULL) { 134 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 135 cinfo->progress->pass_limit = (long) cinfo->image_height; 136 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo) [all...] |
/external/qemu/distrib/jpeg-6b/ |
cdjpeg.c | 62 * Optional progress monitor: display a percent-done figure on stderr. 70 cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress; 89 start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress) 91 /* Enable progress display, unless trace output is on */ 93 progress->pub.progress_monitor = progress_monitor; 94 progress->completed_extra_passes = 0; 95 progress->total_extra_passes = 0; 96 progress->percent_done = -1; 97 cinfo->progress = &progress->pub [all...] |
jcapistd.c | 87 /* Call progress monitor hook if present */ 88 if (cinfo->progress != NULL) { 89 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 90 cinfo->progress->pass_limit = (long) cinfo->image_height; 91 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); 132 /* Call progress monitor hook if present */ 133 if (cinfo->progress != NULL) { 134 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 135 cinfo->progress->pass_limit = (long) cinfo->image_height; 136 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
FlingScroller.java | 107 public void computeScrollOffset(float progress) { 108 progress = Math.min(progress, 1); 109 float f = 1 - progress; 113 mCurrV = getV(progress); 136 private double getV(float progress) { 139 Math.pow(1 - progress, DECELERATED_FACTOR - 1) / mDuration;
|
/external/chromium_org/ui/compositor/ |
layer_animation_element_unittest.cc | 43 element->Progress(start_time, &delegate); 48 element->Progress(effective_start_time, &delegate); 50 element->Progress(effective_start_time + delta/2, &delegate); 58 element->Progress(effective_start_time + delta, &delegate); 150 element->Progress(start_time, &delegate); 152 element->Progress(start_time + delta/2, &delegate); 159 element->Progress(start_time + delta, &delegate); 186 element->Progress(start_time, &delegate); 190 element->Progress(effective_start_time, &delegate); 192 element->Progress(effective_start_time + delta/2, &delegate) [all...] |
/frameworks/base/core/java/android/widget/ |
AbsSeekBar.java | 38 * touch will form the progress value. Usually 0. 49 * progress. 90 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar. 116 // progress bar. 168 * Sets the amount of progress changed via the arrow keys. 178 * Returns the amount of progress changed via the arrow keys. 180 * By default, this will be a value that is derived from the max progress. 428 float progress = 0; 436 progress = mTouchProgressOffset; 445 progress = mTouchProgressOffset [all...] |
/external/chromium_org/chrome/browser/download/ |
download_status_updater.cc | 23 // be many more non-in-progress downloads than in-progress downloads, so 24 // WasInProgressData is set for in-progress downloads and cleared from 25 // non-in-progress downloads instead of the other way around in order to save 58 bool DownloadStatusUpdater::GetProgress(float* progress, 60 *progress = 0; 88 *progress = static_cast<float>(received_bytes) / total_bytes; 142 float progress = 0; local 144 GetProgress(&progress, &download_count); 146 linux_ui->SetProgressFraction(progress); [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
fullscreen_mode_controller.mm | 13 - (void)setMenuBarRevealProgress:(CGFloat)progress; 14 - (void)setRevealAnimationProgress:(NSAnimationProgress)progress; 64 - (void)setCurrentProgress:(NSAnimationProgress)progress { 65 [controller_ setRevealAnimationProgress:progress]; 151 - (void)setMenuBarRevealProgress:(CGFloat)progress { 152 menuBarRevealFraction_ = progress; 161 - (void)setRevealAnimationProgress:(NSAnimationProgress)progress { 164 progress = 1.0 - progress; 165 [controller_ setFloatingBarShownFraction:progress]; [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
EmailServiceStatus.java | 64 public static final String SYNC_STATUS_PROGRESS = "progress"; 70 * Some status updates need to provide values in addition to the core id, code, and progress. 87 * @param progress The progress of this sync operation. 91 final int statusType, final long id, final int statusCode, final int progress, 105 statusExtras.putInt(SYNC_STATUS_PROGRESS, progress); 121 * @param progress The progress of this sync operation. 124 final long mailboxId, final int statusCode, final int progress, int syncResult) { 125 syncStatus(cr, syncExtras, SYNC_STATUS_TYPE_MAILBOX, mailboxId, statusCode, progress, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidTargetParser.java | 83 * @param monitor A progress monitor. Can be null. Caller is responsible for calling done. 88 SubMonitor progress = SubMonitor.convert(monitor, local 99 preload(classLoader, progress.newChild(40, SubMonitor.SUPPRESS_NONE)); 101 if (progress.isCanceled()) { 106 progress.subTask("Permissions"); 108 progress.worked(1); 110 if (progress.isCanceled()) { 115 progress.subTask("Intents"); 122 progress.worked(1); 124 if (progress.isCanceled()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
ProgressTracker.cpp | 43 // Always start progress at initialProgressValue. This helps provide feedback as 107 WTF_LOG(Progress, "Progress started (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree().uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get()); 122 WTF_LOG(Progress, "Progress completed (%p) - frame %p(\"%s\"), value %f, tracked frames %d, originating frame %p", this, frame, frame->tree().uniqueName().string().utf8().data(), m_progressValue, m_numProgressTrackedFrames, m_originatingProgressFrame.get()); 133 WTF_LOG(Progress, "Final progress complete (%p)", this); 137 // Before resetting progress value be sure to send client a least one notification 138 // with final progress value. 151 WTF_LOG(Progress, "Progress incremented (%p) - value %f, tracked frames %d, originating frame %p", this, m_progress (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FileSystemProjectDelegate.js | 50 /** @type {!Object.<number, !WebInspector.Progress>} */ 217 * @param {!WebInspector.Progress} progress 220 findFilesMatchingSearchRequest: function(queries, fileQueries, caseSensitive, isRegex, progress, callback) 226 progress.setTotalWork(queriesToRun.length); 239 this._searchInPath(isRegex ? "" : query, progress, innerCallback.bind(this)); 249 progress.worked(1); 279 progress.done(); 286 * @param {!WebInspector.Progress} progress [all...] |
/external/chromium_org/cc/animation/ |
transform_operations_unittest.cc | 277 SkMScalar progress = 0.25f; local 280 blended_scale.Blend(scale_from, progress); 283 blended_translate.Blend(translate_from, progress); 289 expected, operations_to.Blend(operations_from, progress)); 292 static void CheckProgress(SkMScalar progress, 298 expected_matrix.Blend(from_matrix, progress); 300 expected_matrix, to_transform.Blend(from_transform, progress)); 363 SkMScalar progress = 0.25f; local 366 expected.Blend(from, progress); 369 expected, operations_to.Blend(operations_from, progress)); 379 SkMScalar progress = 0.5f; local 395 SkMScalar progress = 0.5f; local 410 SkMScalar progress = 0.5f; local 432 SkMScalar progress = 0.5f; local 466 SkMScalar progress = 0.5f; local 500 SkMScalar progress = 0.5f; local 534 SkMScalar progress = 0.5f; local 571 SkMScalar progress = 0.5f; local 589 SkMScalar progress = 0.5f; local 607 SkMScalar progress = 0.5f; local 625 SkMScalar progress = 0.5f; local 643 SkMScalar progress = 0.5f; local 662 SkMScalar progress = 0.5f; local 1108 TestProgress progress[] = { local 1147 double progress = static_cast<double>(i) \/ (steps - 1); local 1171 TestProgress progress[] = { local 1203 TestProgress progress[] = { local [all...] |
/external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ |
WebContentsDelegateAndroid.java | 41 // The most recent load progress callback received from WebContents, as a percentage. 80 private final void notifyLoadProgressChanged(double progress) { 81 mMostRecentProgress = (int) (100.0 * progress); 86 * @param progress The load progress [0, 100] for the current web contents. 88 public void onLoadProgressChanged(int progress) {
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Fisheye.java | 61 public void onBar1Changed(int progress) { 62 scale = progress / 50.0f; 65 public void onBar2Changed(int progress) { 66 center_x = progress / 100.0f; 69 public void onBar3Changed(int progress) { 70 center_y = progress / 100.0f;
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Fisheye.java | 58 public void onBar1Changed(int progress) { 59 scale = progress / 50.0f; 62 public void onBar2Changed(int progress) { 63 center_x = progress / 100.0f; 66 public void onBar3Changed(int progress) { 67 center_y = progress / 100.0f;
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
Fisheye.java | 61 public void onBar1Changed(int progress) { 62 scale = progress / 50.0f; 65 public void onBar2Changed(int progress) { 66 center_x = progress / 100.0f; 69 public void onBar3Changed(int progress) { 70 center_y = progress / 100.0f;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
SeekBarDialogPreference.java | 82 private int getValueFromProgress(final int progress) { 83 return progress + mMinValue; 94 private int getClippedValueFromProgress(final int progress) { 95 return clipValue(getValueFromProgress(progress)); 131 public void onProgressChanged(final SeekBar seekBar, final int progress, 133 final int value = getClippedValueFromProgress(progress);
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
RenderThread.cpp | 112 bool progress; local 114 progress = false; 121 progress = true; 130 progress = true; 141 progress = true; 144 } while( progress );
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
SeekBar1.java | 44 mProgressText = (TextView)findViewById(R.id.progress); 48 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) { 49 mProgressText.setText(progress + " " +
|
/external/chromium/chrome/browser/sync/ |
sync_setup_wizard.cc | 25 // A setup flow is in progress and dialog is currently showing. 30 // No flow is in progress, and we have never escorted the user all the 35 // No flow in progress, but we've finished the wizard flow once before.
|
/external/chromium/chrome/browser/ui/gtk/importer/ |
import_progress_dialog_gtk.h | 25 // Displays the import progress dialog box and starts the import process. 58 // Import progress dialog. 82 // True if the import operation is in progress.
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/ |
main.js | 20 $('progress').style.display = 'block'; 23 var bar = $('progress-bar'); 64 embedWrap.addEventListener('progress', moduleLoadProgress, true);
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/ |
dromaeorunner.js | 26 case "dromaeo:progress": 27 DRT.progress(event.data); 40 progress: function(message) { 38 progress: function(message) { method
|