HomeSort by relevance Sort by last modified time
    Searched full:progress (Results 76 - 100 of 2396) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Email/src/com/android/email/
RefreshManager.java 125 public void onCallback(MessagingException exception, int progress, Clock clock) {
126 if (exception == null && progress == 0) {
129 } else if (exception != null || progress == 100) {
371 int progress) {
373 Log.d(Logging.LOG_TAG, "updateMailboxListCallback " + accountId + ", " + progress
376 mMailboxListStatus.get(accountId).onCallback(exception, progress, mClock);
389 long mailboxId, int progress, int dontUseNumNewMessages,
393 + mailboxId + ", " + progress + ", " + exceptionToString(exception));
395 updateMailboxCallbackInternal(exception, accountId, mailboxId, progress, 0);
408 MessagingException exception, long accountId, long mailboxId, int progress,
    [all...]
  /external/jpeg/
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/
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/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
metered_stream.py 34 can be used to produce effects like progress bars.
47 meters (progress bars, etc.).
50 two other methods for output, update(), and progress().
64 progress() is just like update(), except that if you are in verbose mode,
65 progress messages are not output at all (they are dropped). This is
66 used for things like progress bars which are presumed to be unwanted in
78 verbose: whether progress is a no-op and updates() aren't overwritten
99 def progress(self, str): member in class:MeteredStream
103 This is used for progress updates that don't need to be preserved in
118 This routine preserves the same console logging behavior as 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/webkit/Source/WebCore/loader/
ProgressTracker.cpp 43 // Always start progress at initialProgressValue. This helps provide feedback as
106 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());
124 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());
141 LOG(Progress, "Final progress complete (%p)", this);
145 // Before resetting progress value be sure to send client a least one notification
146 // with final progress value.
160 LOG(Progress, "Progress incremented (%p) - value %f, tracked frames %d, originating frame %p", this, m_progress (…)
    [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.
113 // progress bar.
165 * Sets the amount of progress changed via the arrow keys.
175 * Returns the amount of progress changed via the arrow keys.
177 * By default, this will be a value that is derived from the max progress.
411 float progress = 0;
418 progress = mTouchProgressOffset;
422 progress += scale * max
    [all...]
  /bootable/recovery/
ui.h 37 // --- progress indicator ---
41 // Show a progress bar and define the scope of the next operation:
42 // portion - fraction of the progress bar the next operation will use
43 // seconds - expected time interval (progress bar moves at this minimum rate)
46 // Set progress bar position (0.0 - 1.0 within the scope defined
72 // Called on each keypress, even while operations are in progress.
screen_ui.h 26 // (shows an icon + a progress bar, text logging, menu, etc.)
36 // progress indicator
68 float progressScopeStart, progressScopeSize, progress; member in class:ScreenRecoveryUI
72 // progress bar)
  /external/webkit/Source/WebCore/html/
HTMLProgressElement.cpp 57 RefPtr<HTMLProgressElement> progress = adoptRef(new HTMLProgressElement(tagName, document, form)); local
58 progress->createShadowSubtree();
59 return progress;
69 DEFINE_STATIC_LOCAL(const AtomicString, progress, ("progress"));
70 return progress;
HTMLDataGridCellElement.idl 38 attribute float progress; // For progress cells, a value from 0-1.0 indicating the state of progress.
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 105 bool progress; local
107 progress = false;
114 progress = true;
123 progress = true;
134 progress = true;
137 } 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.
  /frameworks/base/core/res/res/layout/
alert_dialog_progress.xml 19 <ProgressBar android:id="@+id/progress"
36 android:layout_below="@id/progress"
46 android:layout_below="@id/progress"
alert_dialog_progress_holo.xml 19 <ProgressBar android:id="@+id/progress"
36 android:layout_below="@id/progress"
46 android:layout_below="@id/progress"
  /packages/apps/Email/res/layout/
waiting_for_sync_message.xml 30 android:id="@+id/progress"
40 android:layout_toRightOf="@+id/progress"
47 android:layout_toRightOf="@+id/progress"
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 59 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress); local
60 progress.setProgress(mProgress);
  /external/chromium/chrome/browser/ui/cocoa/
animatable_view.mm 43 // Overridden to call setHeight for each progress tick.
44 - (void)setCurrentProgress:(NSAnimationProgress)progress {
45 [super setCurrentProgress:progress];
46 [view_ setHeight:((progress * (endHeight_ - startHeight_)) + startHeight_)];
  /external/mesa3d/src/glsl/
lower_texture_projection.cpp 44 progress = false;
49 bool progress; member in class:lower_texture_projection_visitor
87 progress = true;
98 return v.progress;
opt_noop_swizzle.cpp 42 this->progress = false;
46 bool progress; member in class:ir_noop_swizzle_visitor
69 this->progress = true;
79 return v.progress;
opt_swizzle_swizzle.cpp 39 progress = false;
44 bool progress; member in class:ir_swizzle_swizzle_visitor
77 this->progress = true;
92 return v.progress;
  /external/webkit/LayoutTests/http/tests/appcache/resources/
main-resource-hash-frame.html 11 applicationCache.onprogress = function() { log("progress") }
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
FindIndicatorWindow.mm 72 void (WebKit::FindIndicatorWindow::*_animationProgressCallback)(double progress);
78 animationProgressCallback:(void (WebKit::FindIndicatorWindow::*)(double progress))animationProgressCallback
86 animationProgressCallback:(void (WebKit::FindIndicatorWindow::*)(double progress))animationProgressCallback
99 - (void)setCurrentProgress:(NSAnimationProgress)progress
101 (_findIndicatorWindow->*_animationProgressCallback)(progress);
214 void FindIndicatorWindow::fadeOutAnimationCallback(double progress)
218 [m_findIndicatorWindow.get() setAlphaValue:1.0 - progress];
229 void FindIndicatorWindow::bounceAnimationCallback(double progress)
234 WKWindowBounceAnimationSetAnimationProgress(m_bounceAnimationContext, progress);

Completed in 1633 milliseconds

1 2 34 5 6 7 8 91011>>