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

1 2 3 4 5 67 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
404-manifest.html 20 applicationCache.addEventListener('progress', function() { unexpectedEvent("progress") }, false);
foreign-iframe-main.html 28 applicationCache.addEventListener('progress', function() { log("progress") }, false);
  /frameworks/base/core/java/android/content/
ISyncContext.aidl 22 * Interface used by the SyncAdapter to indicate its progress.
27 * Call to indicate that the SyncAdapter is making progress. E.g., if this SyncAdapter
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailAsyncTask.java 39 public abstract class EmailAsyncTask<Params, Progress, Result> {
138 private final InnerTask<Params, Progress, Result> mInnerTask;
146 mInnerTask = new InnerTask<Params, Progress, Result>(this);
184 public final EmailAsyncTask<Params, Progress, Result> executeParallel(Params... params) {
193 public final EmailAsyncTask<Params, Progress, Result> executeSerial(Params... params) {
201 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteParallel(
210 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteSerial(
215 private final EmailAsyncTask<Params, Progress, Result> executeInternal(Executor executor,
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
AlphaAnimation.java 44 protected void onCalculate(float progress) {
46 + (mEndAlpha - mStartAlpha) * progress, 0f, 1f);
Animation.java 34 // In step 3, onCalculate(float progress) is called so subclasses can calculate
35 // the value according to progress (progress is a value in [0,1]).
38 // can change the progress value. The interpolator can be set by
91 abstract protected void onCalculate(float progress);
StateTransitionAnimation.java 129 protected void onCalculate(float progress) {
131 + (mTransitionSpec.contentScaleTo - mTransitionSpec.contentScaleFrom) * progress;
133 + (mTransitionSpec.contentAlphaTo - mTransitionSpec.contentAlphaFrom) * progress;
136 * progress;
139 * progress;
141 + (mTransitionSpec.overlayScaleTo - mTransitionSpec.overlayScaleFrom) * progress;
143 + (mTransitionSpec.overlayAlphaTo - mTransitionSpec.overlayAlphaFrom) * progress;
  /packages/apps/Settings/src/com/android/settings/
ProgressCategoryBase.java 29 * Turn on/off the progress indicator and text on the right.
30 * @param progressOn whether or not the progress should be displayed
  /frameworks/base/docs/html/training/notify-user/
index.jd 94 <a href="display-progress.html">Displaying Progress in a Notification</a>
98 Learn how to display the progress of an operation in a notification, both for
99 operations where you can estimate how much has been completed (determinate progress) and
100 operations where you don't know how much has been completed (indefinite progress).
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
TestBase.java 63 public void onBar1Changed(int progress) {
65 public void onBar2Changed(int progress) {
67 public void onBar3Changed(int progress) {
69 public void onBar4Changed(int progress) {
71 public void onBar5Changed(int progress) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
TestBase.java 47 public void onBar1Changed(int progress) {
49 public void onBar2Changed(int progress) {
51 public void onBar3Changed(int progress) {
53 public void onBar4Changed(int progress) {
55 public void onBar5Changed(int progress) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
TestBase.java 65 public void onBar1Changed(int progress) {
67 public void onBar2Changed(int progress) {
69 public void onBar3Changed(int progress) {
71 public void onBar4Changed(int progress) {
73 public void onBar5Changed(int progress) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
MtpDeviceIndex.java 92 public enum Progress {
96 private Progress mProgress = Progress.Uninitialized;
135 if (mProgress != Progress.Initialized) return null;
136 mProgress = Progress.Pending;
141 return mProgress == Progress.Finished;
144 synchronized public Progress getProgress() {
150 * @return Progress at the time the listener was added (useful for
153 synchronized public Progress setProgressListener(ProgressListener listener) {
172 return mProgress == Progress.Finished ? mUnifiedLookupIndex.length : 0
    [all...]
  /bootable/recovery/
screen_ui.cpp 59 progress(0),
140 // Draw the progress bar (if any) on the screen. Does not flip pages.
158 // Erase behind the progress bar (in case this was a progress-only update)
163 float p = progressScopeStart + progress * progressScopeSize;
167 // Fill the progress bar from right to left.
175 // Fill the progress bar from left to right.
266 // Updates only the progress bar, if possible, otherwise redraws the screen.
274 draw_progress_locked(); // Draw only the progress bar and overlays
279 // Keeps the progress bar updated, even when the process is otherwise busy
    [all...]
install.cpp 42 // Default allocation of progress bar segments to operations
84 // progress bar. The program can write single-line commands:
86 // progress <frac> <secs>
87 // fill up the next <frac> part of of the progress bar
90 // progress of this segment of the bar
94 // progress bar within the segment defined by the most
95 // recent progress command.
138 } else if (strcmp(command, "progress") == 0) {
200 // Give verification half the progress bar...
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 35 * touch will form the progress value. Usually 0.
47 * progress.
89 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
112 // progress bar.
158 * Sets the amount of progress changed via the arrow keys.
168 * Returns the amount of progress changed via the arrow keys.
170 * By default, this will be a value that is derived from the max progress.
468 float progress = 0;
480 progress = mTouchProgressOffset;
484 progress += scale * max
    [all...]
  /external/e2fsprogs/resize/
main.c 51 ext2_sim_progmeter progress; local
55 progress = (ext2_sim_progmeter) rfs->prog_data;
59 if (progress)
60 ext2fs_progress_close(progress);
61 progress = 0;
83 retval = ext2fs_progress_init(&progress, label, 30,
86 progress = 0;
87 rfs->prog_data = (void *) progress;
89 if (progress)
90 ext2fs_progress_update(progress, cur)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarActivity.java 232 * Sets the visibility of the progress bar in the title.
234 * In order for the progress bar to be shown, the feature must be requested
237 * @param visible Whether to show the progress bars in the title.
246 * Sets the visibility of the indeterminate progress bar in the title.
248 * In order for the progress bar to be shown, the feature must be requested
251 * @param visible Whether to show the progress bars in the title.
260 * Sets whether the horizontal progress bar in the title should be indeterminate (the
263 * In order for the progress bar to be shown, the feature must be requested
266 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
275 * Sets the progress for the progress bars in the title
    [all...]
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsRSActivity.java 96 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
99 mInBlack = (float)progress;
102 mOutBlack = (float)progress;
105 mInWhite = (float)progress + 127.0f;
108 mOutWhite = (float)progress + 127.0f;
111 mGamma = (float)progress/100.0f;
116 mSaturation = (float)progress / 50.0f;
  /external/chromium/chrome/browser/download/
download_file_manager.h 6 // represent one in progress download and performs the disk IO for that
16 // Updating an in progress download
36 // appropriate DownloadManager. In progress downloads are cancelled for a
65 // Manages all in progress downloads.
130 // Timer helpers for updating the UI about the current progress of a download.
164 // A map of all in progress downloads. It owns the download files.
167 // Schedule periodic updates of the download progress. This timer
  /external/chromium/chrome/browser/net/
connection_tester.h 39 // any of the in-progress tests.
127 // Constructs a ConnectionTester that notifies test progress to |delegate|.
133 // Note that destruction cancels any in-progress tests.
136 // Starts running the test suite on |url|. Notification of progress is sent to
167 // The object to notify test progress to.
170 // The current in-progress test, or NULL if there is no active test.
174 // of the list is the one currently in progress.
  /external/chromium/chrome/browser/ui/cocoa/
dock_icon.mm 23 // Indicates how many downloads are in progress.
26 // Indicates whether the progress indicator should be in an indeterminate state
30 // Indicates the amount of progress made of the download. Ranges from [0..1].
31 @property (nonatomic) float progress;
39 @synthesize progress = progress_;
217 - (void)setProgress:(float)progress {
221 [dockTileView setProgress:progress];
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorExportTest.java 144 public void onProgress(Object item, int action, int progress) {
154 int progress) {
155 progressUpdate[i++] = progress;
269 public void onProgress(Object item, int action, int progress) {
279 int progress) {
280 progressUpdate[i++] = progress;
332 public void onProgress(Object item, int action, int progress) {
342 int progress) {
343 progressUpdate[i++] = progress;
390 public void onProgress(Object item, int action, int progress) {
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 91 boolean progress = false;
93 progress |= handshakeCompleted(client,
99 progress |= handshakeCompleted(server,
104 if (!progress) {
131 boolean progress = false;
135 return progress;
138 progress = true;
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 152 int progress = pref.getOneTimeInitializationProgress(); local
153 final int initialProgress = progress;
155 if (progress < 1) {
157 progress = 1;
164 if (progress < 2) {
166 progress = 2;
171 // Use "progress" to skip the initializations that's already done before.
175 if (progress != initialProgress) {
176 pref.setOneTimeInitializationProgress(progress);

Completed in 697 milliseconds

1 2 3 4 5 67 8 91011>>