HomeSort by relevance Sort by last modified time
    Searched full:progress (Results 501 - 525 of 2620) sorted by null

<<21222324252627282930>>

  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.h 116 * \param progress Variable to set the current progress in.
119 int createMosaic(float &progress, bool &cancelComputation);
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieOverlay.java 104 * If a preview or export is in progress, then this change is effective for
121 * If a preview or export is in progress, then this change is effective for
139 * progress, then this change is effective for next preview or export
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 33 import static com.android.notificationstudio.model.EditableItem.PROGRESS;
71 if (PROGRESS.hasValue() && PROGRESS.getValueBool())
NotificationGenerator.java 33 import static com.android.notificationstudio.model.EditableItem.PROGRESS;
75 if (PROGRESS.hasValue() && PROGRESS.getValueBool())
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp 137 int progress);
2718 M4OSA_UInt8 progress = 0; local
    [all...]
  /external/v8/tools/
test-wrapper-gypbuild.py 71 result.add_option("-p", "--progress",
72 help="The style of progress indicator (verbose, dots, color, mono)",
162 if options.progress != 'mono':
163 result += ['--progress=' + options.progress]
  /packages/apps/Gallery2/src/com/android/photos/
MultiSelectGridFragment.java 195 * this time an indeterminate progress indicator will be shown instead.
204 * @param shown If true, the grid view is shown; if false, the progress
222 * this time an indeterminate progress indicator will be shown instead.
224 * @param shown If true, the grid view is shown; if false, the progress
314 // have our data right away and start with the progress indicator.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParser.java 130 * @param monitor A progress monitor. Can be null. Caller is responsible for calling done.
151 SubMonitor progress = SubMonitor.convert(monitor, 100); local
191 progress.setWorkRemaining(mGroupList.size() + mViewList.size());
195 progress.worked(1);
202 progress.worked(1);
  /docs/source.android.com/src/devices/tech/encryption/
android_crypto_implementation.jd 199 vold.encrypt_progress is set to "0", it will bring up the progress bar UI,
200 which queries that property every 5 seconds and updates a progress bar.</p>
230 the progress bar when it changes.</p>
246 down, but before the progress bar UI is up, vold will just reboot the
278 vold.decrypt trigger_restart_min_framework Set by vold to start the progress
283 progress bar UI mode.
285 vold.encrypt_progress 0 to 100 The progress bar UI should display
288 vold.encrypt_progress error_partially_encrypted The progress bar UI should
294 vold.encrypt_progress error_reboot_failed The progress bar UI should display
301 vold.encrypt_progress error_not_encrypted The progress bar UI should displa
    [all...]
  /external/jpeg/
jdmaster.c 426 * progress monitoring appropriately. The input step is counted
429 if (cinfo->progress != NULL && ! cinfo->buffered_image &&
440 cinfo->progress->pass_counter = 0L;
441 cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows * nscans;
442 cinfo->progress->completed_passes = 0;
443 cinfo->progress->total_passes = (cinfo->enable_2pass_quant ? 3 : 2);
501 /* Set up progress monitor's pass info if present */
502 if (cinfo->progress != NULL) {
503 cinfo->progress->completed_passes = master->pass_number;
504 cinfo->progress->total_passes = master->pass_number
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdmaster.c 426 * progress monitoring appropriately. The input step is counted
429 if (cinfo->progress != NULL && ! cinfo->buffered_image &&
440 cinfo->progress->pass_counter = 0L;
441 cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows * nscans;
442 cinfo->progress->completed_passes = 0;
443 cinfo->progress->total_passes = (cinfo->enable_2pass_quant ? 3 : 2);
501 /* Set up progress monitor's pass info if present */
502 if (cinfo->progress != NULL) {
503 cinfo->progress->completed_passes = master->pass_number;
504 cinfo->progress->total_passes = master->pass_number
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 168 mProgress = (TextView) findViewById(R.id.progress);
251 private void onReportProgress(int progress) {
252 mProgress.setText(mPercentFormat.format(progress / 10000.0));
259 if ((delta > 3 * MS_PER_SECOND) && (progress > 100)) {
260 long totalTime = 10000 * delta / progress;
545 private void reportProgress(int progress) {
547 Message.obtain(mHandler, MSG_REPORT_PROGRESS, progress, 0));
961 int progress = (int) (Math.min(mTotalExpectedSize, local
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitdownload.cpp 325 * WebKitDownload:progress:
327 * Determines the current progress of the download. Notice that,
328 * although the progress changes are reported as soon as possible,
336 g_param_spec_double("progress",
337 _("Progress"),
338 _("Determines the current progress of the download"),
798 * Determines the current progress of the download.
872 // Throttle progress notification to not consume high amounts of
874 // in more then 0.7 secs from now, or the last notified progress
891 g_object_notify(G_OBJECT(download), "progress");
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
SocketChannel.java 181 * operation is in progress. The calling thread will have the
219 * operation is in progress. The calling thread has the
248 * operation is in progress. The interrupt state of the calling
264 * If a read operation is in progress, subsequent threads will block until
279 * operation is in progress. The interrupt state of the calling
301 * If a read operation is in progress, subsequent threads will block until
315 * operation is in progress. The interrupt state of the calling
347 * operation is in progress. The interrupt state of the calling
365 * If a write operation is in progress, subsequent threads will block until
382 * operation is in progress. The interrupt state of the callin
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
VideoEditorBaseActivity.java 186 String itemId, int action, int progress) {
197 Log.v(TAG, "onVideoEditorGeneratePreviewProgress: " + className + " " + progress);
205 getMediaLayout().onGeneratePreviewMediaItemProgress(itemId, action, progress);
207 getMediaLayout().onGeneratePreviewTransitionProgress(itemId, action, progress);
209 getAudioTrackLayout().onGeneratePreviewProgress(itemId, action, progress);
217 int progress) {
231 // Update the export progress
232 onExportProgress(progress);
765 String audioTrackId, int progress) {
775 getAudioTrackLayout().setWaveformExtractionProgress(audioTrackId, progress);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
_index.html 313 <h3>Progress Bar</h3>
316 <dd>Demonstrates large and small rotating progress indicators that can be incremented or decremented in units. </dd>
319 <dd>Demonstrates large and small continuously rotating progress indicators used to indicate a generic &quot;busy&quot; message. </dd>
322 <dd>Demonstrates a ProgressDialog, a popup dialog that hosts a progress bar. This example demonstrates both determinate and indeterminate progress indicators. </dd>
325 <dd>Demonstrates an Activity screen with a progress indicator loaded by setting the WindowPolicy's progress indicator feature. </dd>
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverTransfer.java 97 float mProgress; // Progress in range [0..1]
141 public void updateFileProgress(float progress) {
146 this.mProgress = progress;
231 float progress = 0; local
234 progress = (float) mCurrentCount * progressUnit + mProgress * progressUnit;
236 if (mTotalCount > 0 && progress > 0) {
237 notBuilder.setProgress(100, (int) (100 * progress), false);
  /external/e2fsprogs/resize/
resize2fs.c 76 errcode_t (*progress)(ext2_resize_t rfs, int pass,
104 rfs->progress = progress;
634 if (rfs->progress) {
635 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
652 if (rfs->progress) {
653 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
    [all...]
  /external/marisa-trie/v0_1_5/lib/
Makefile.in 79 am_libmarisa_alpha_la_OBJECTS = base.lo progress.lo mapper.lo \
227 marisa_alpha/progress.cc \
247 marisa_alpha/progress.h \
342 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/progress.Plo@am__quote@
379 progress.lo: marisa_alpha/progress.cc
380 @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT progress.lo -MD -MP -MF $(DEPDIR)/progress.Tpo -c -o progress.lo `test -f 'marisa_alpha/progress.cc' || echo '$(srcdir)/'`marisa_alpha/progress.c
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
sync.proto 289 // An integer identifying the data type whose progress is tracked by this
303 // some flexibility in implementing progress tracking. For instance,
309 // the progress token.
319 // progress tracking mechanism, but which wish to switch over to the opaque
322 // timestamp, and return only an opaque progress token.
332 // Indicates the client's current progress in downloading updates. A
366 // Per-datatype progress marker. If present, the server will ignore
488 // The server may provide a new progress marker even if this is the end of
494 // previous progress-marker value for that datatype.
496 // Progress markers in the context of a response will never have th
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui_3.6.1.M20100826-1330.jar 
  /frameworks/base/docs/html/guide/topics/ui/notifiers/
notifications.jd 36 <li><a href="#Progress">Displaying Progress in a Notification</a>
38 <li><a href="#FixedProgress">Displaying a fixed-duration progress indicator</a></li>
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java 225 // happens if the user gesture is still in progress or we are in a capture
692 // Calculate the move-out progress value.
695 float progress = calculateMoveOutProgress(left, right, viewW); local
696 progress = Utils.clamp(progress, -1f, 1f);
700 if (progress < 0) {
701 scale = getScrollScale(progress);
702 float alpha = getScrollAlpha(progress);
833 float progress = (float) (w / 2 - r.centerX()) / w; local
834 progress = Utils.clamp(progress, -1, 1)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp     [all...]
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 69 * The progress, in percentage, of the page load. Valid values are between
149 * Called from the WebChrome client, this sets the current progress
151 * @param progress The progress made so far between 0 and 100.
153 synchronized public void onProgressChanged(int progress) {
154 mProgress = progress;

Completed in 1490 milliseconds

<<21222324252627282930>>