HomeSort by relevance Sort by last modified time
    Searched refs:Progress (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/os/
AsyncTaskCompat.java 36 public static <Params, Progress, Result> AsyncTask<Params, Progress, Result> executeParallel(
37 AsyncTask<Params, Progress, Result> task,
  /external/robolectric/src/main/java/android/os/
ShadowAsyncTaskBridge.java 6 public class ShadowAsyncTaskBridge<Params, Progress, Result> {
7 private AsyncTask<Params, Progress, Result> asyncTask;
9 public ShadowAsyncTaskBridge(AsyncTask<Params, Progress, Result> asyncTask) {
25 public void onProgressUpdate(Progress... values) {
  /frameworks/support/v4/honeycomb/android/support/v4/os/
AsyncTaskCompatHoneycomb.java 26 static <Params, Progress, Result> void executeParallel(
27 AsyncTask<Params, Progress, Result> task,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Progress.js 35 WebInspector.Progress = function()
39 WebInspector.Progress.Events = {
44 WebInspector.Progress.prototype = {
83 * @param {!WebInspector.Progress} parent
93 parent.addEventListener(WebInspector.Progress.Events.Canceled, this._parentCanceled.bind(this));
101 this.dispatchEventToListeners(WebInspector.Progress.Events.Done);
107 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
109 this._children[i].dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
143 * @implements {WebInspector.Progress}
176 this.dispatchEventToListeners(WebInspector.Progress.Events.Done)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
write_from_file_operation_unittest.cc 88 test_utils_.GetUtilityClient()->Progress(0);
89 test_utils_.GetUtilityClient()->Progress(50);
90 test_utils_.GetUtilityClient()->Progress(100);
93 test_utils_.GetUtilityClient()->Progress(0);
94 test_utils_.GetUtilityClient()->Progress(50);
95 test_utils_.GetUtilityClient()->Progress(100);
destroy_partitions_operation_unittest.cc 53 test_utils_.GetUtilityClient()->Progress(0);
54 test_utils_.GetUtilityClient()->Progress(50);
55 test_utils_.GetUtilityClient()->Progress(100);
operation_unittest.cc 176 test_utils_.GetUtilityClient()->Progress(0);
177 test_utils_.GetUtilityClient()->Progress(kTestFileSize / 2);
178 test_utils_.GetUtilityClient()->Progress(kTestFileSize);
218 test_utils_.GetUtilityClient()->Progress(0);
219 test_utils_.GetUtilityClient()->Progress(kTestFileSize / 2);
220 test_utils_.GetUtilityClient()->Progress(kTestFileSize);
254 test_utils_.GetUtilityClient()->Progress(0);
255 test_utils_.GetUtilityClient()->Progress(kTestFileSize / 2);
image_writer_private_apitest.cc 76 base::Bind(&FakeImageWriterClient::Progress,
82 base::Bind(&FakeImageWriterClient::Progress,
88 base::Bind(&FakeImageWriterClient::Progress,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAsyncTask.java 18 public class ShadowAsyncTask<Params, Progress, Result> {
20 @RealObject private AsyncTask<Params, Progress, Result> realAsyncTask;
76 public AsyncTask<Params, Progress, Result> execute(final Params... params) {
100 * @param values The progress values to update the UI with.
104 public void publishProgress(final Progress... values) {
112 private ShadowAsyncTaskBridge<Params, Progress, Result> getBridge() {
113 return new ShadowAsyncTaskBridge<Params, Progress, Result>(realAsyncTask);
  /external/chromium_org/ui/compositor/
layer_animation_sequence_unittest.cc 55 sequence.Progress(start_time, &delegate);
57 sequence.Progress(start_time + base::TimeDelta::FromMilliseconds(500),
61 sequence.Progress(start_time + base::TimeDelta::FromMilliseconds(1000),
92 sequence.Progress(start_time, &delegate);
101 sequence.Progress(effective_start + delta/2, &delegate);
104 sequence.Progress(effective_start + delta, &delegate);
148 sequence.Progress(start_time, &delegate);
158 sequence.Progress(opacity_effective_start + delta/2, &delegate);
160 sequence.Progress(opacity_effective_start + delta, &delegate);
168 sequence.Progress(opacity_effective_start + delta + delta/2
    [all...]
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...]
layer_animation_sequence.h 58 // This must be called before the first call to Progress. If starting the
66 void Progress(base::TimeTicks now, LayerAnimationDelegate* delegate);
68 // Returns true if calling Progress now, with the given time, will finish
174 // in-progress threaded animation owned by this sequence will have this
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ProgressIndicator.js 33 * @implements {WebInspector.Progress}
38 this.element = document.createElementWithClass("div", "progress-bar-container");
40 this._progressElement = this.element.createChild("progress");
41 this._stopButton = new WebInspector.StatusBarButton(WebInspector.UIString("Cancel"), "progress-bar-stop-button");
70 this.dispatchEventToListeners(WebInspector.Progress.Events.Done);
76 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
WeakAsyncTask.java 23 public abstract class WeakAsyncTask<Params, Progress, Result, WeakTarget> extends
24 AsyncTask<Params, Progress, Result> {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailAsyncTask.java 41 public abstract class EmailAsyncTask<Params, Progress, Result> {
141 private final InnerTask<Params, Progress, Result> mInnerTask;
149 mInnerTask = new InnerTask<Params, Progress, Result>(this);
187 public final EmailAsyncTask<Params, Progress, Result> executeParallel(Params... params) {
196 public final EmailAsyncTask<Params, Progress, Result> executeSerial(Params... params) {
204 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteParallel(
213 public final EmailAsyncTask<Params, Progress, Result> cancelPreviousAndExecuteSerial(
218 private EmailAsyncTask<Params, Progress, Result> executeInternal(Executor executor,
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 68 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
99 * protected void onProgressUpdate(Integer... progress) {
100 * setProgressPercent(progress[0]);
119 * <li><code>Progress</code>, the type of the progress units published during
135 * showing a progress bar in the user interface.</li>
142 * of progress. These values are published on the UI thread, in the
146 * undefined. This method is used to display any form of progress in the user
148 * it can be used to animate a progress bar or show logs in a text field.</li>
197 public abstract class AsyncTask<Params, Progress, Result>
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 68 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
99 * protected void onProgressUpdate(Integer... progress) {
100 * setProgressPercent(progress[0]);
119 * <li><code>Progress</code>, the type of the progress units published during
135 * showing a progress bar in the user interface.</li>
142 * of progress. These values are published on the UI thread, in the
146 * undefined. This method is used to display any form of progress in the user
148 * it can be used to animate a progress bar or show logs in a text field.</li>
197 public abstract class AsyncTask<Params, Progress, Result>
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 68 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
99 * protected void onProgressUpdate(Integer... progress) {
100 * setProgressPercent(progress[0]);
119 * <li><code>Progress</code>, the type of the progress units published during
135 * showing a progress bar in the user interface.</li>
142 * of progress. These values are published on the UI thread, in the
146 * undefined. This method is used to display any form of progress in the user
148 * it can be used to animate a progress bar or show logs in a text field.</li>
197 public abstract class AsyncTask<Params, Progress, Result>
    [all...]
  /frameworks/base/core/java/android/os/
AsyncTask.java 48 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
79 * protected void onProgressUpdate(Integer... progress) {
80 * setProgressPercent(progress[0]);
99 * <li><code>Progress</code>, the type of the progress units published during
115 * showing a progress bar in the user interface.</li>
122 * of progress. These values are published on the UI thread, in the
126 * undefined. This method is used to display any form of progress in the user
128 * it can be used to animate a progress bar or show logs in a text field.</li>
177 public abstract class AsyncTask<Params, Progress, Result>
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 47 abstract class ModernAsyncTask<Params, Progress, Result> {
219 * @param values The values indicating progress.
225 protected void onProgressUpdate(Progress... values) {
295 * task should be interrupted; otherwise, in-progress tasks are allowed
370 public final ModernAsyncTask<Params, Progress, Result> execute(Params... params) {
404 public final ModernAsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec,
445 * @param values The progress values to update the UI with.
450 protected final void publishProgress(Progress... values) {
453 new AsyncTaskResult<Progress>(this, values)).sendToTarget();
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 313 createElementWithClassName('div', 'progress background');
317 createElementWithClassName('canvas', 'progress');
318 this.nodeProgressForeground_.width = Download.Progress.width;
319 this.nodeProgressForeground_.height = Download.Progress.height;
481 * Constants and "constants" for the progress meter.
483 Download.Progress = {
489 Download.Progress.HALF = Download.Progress.SIDE / 2;
492 if (floatEq(Download.Progress.scale, window.devicePixelRatio)) {
497 Download.Progress.scale = window.devicePixelRatio
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_apitest.cc 50 IN_PROC_BROWSER_TEST_F(GetUpdateStatusApiTest, Progress) {
  /external/chromium_org/ui/file_manager/file_manager/background/js/
drive_sync_handler.js 9 * @param {ProgressCenter} progressCenter Progress center to submit the
15 * Progress center to submit the progressing item.
29 * Progress center item.
65 * Progress ID of the drive sync error.
  /external/lzma/CPP/7zip/Common/
CWrappers.h 12 ICompressProgressInfo *Progress;
14 CCompressProgressWrap(ICompressProgressInfo *progress);
CWrappers.cpp 18 p->Res = p->Progress->SetRatioInfo(CONVERT_PR_VAL(inSize), CONVERT_PR_VAL(outSize));
22 CCompressProgressWrap::CCompressProgressWrap(ICompressProgressInfo *progress)
24 p.Progress = CompressProgress;
25 Progress = progress;

Completed in 2667 milliseconds

1 2 3 4