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

1 2 3

  /frameworks/support/compat/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/v1/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/compat/honeycomb/android/support/v4/os/
AsyncTaskCompatHoneycomb.java 26 static <Params, Progress, Result> void executeParallel(
27 AsyncTask<Params, Progress, Result> task,
  /external/robolectric/v1/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/v8/src/heap/
incremental-marking-job.h 18 // The delayed task performs steps only if the idle task is not making progress.
30 enum Progress { kDone, kMoreWork };
31 static Progress Step(Heap* heap, double deadline_in_ms);
incremental-marking-job.cc 71 IncrementalMarkingJob::IdleTask::Progress IncrementalMarkingJob::IdleTask::Step(
  /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,
  /packages/apps/Messaging/src/com/android/messaging/util/
SafeAsyncTask.java 36 public abstract class SafeAsyncTask<Params, Progress, Result>
37 extends AsyncTask<Params, Progress, Result> {
81 public final SafeAsyncTask<Params, Progress, Result> executeOnThreadPool(
  /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 51 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
82 * protected void onProgressUpdate(Integer... progress) {
83 * setProgressPercent(progress[0]);
102 * <li><code>Progress</code>, the type of the progress units published during
118 * showing a progress bar in the user interface.</li>
125 * of progress. These values are published on the UI thread, in the
129 * undefined. This method is used to display any form of progress in the user
131 * it can be used to animate a progress bar or show logs in a text field.</li>
180 public abstract class AsyncTask<Params, Progress, Result>
    [all...]
  /frameworks/support/compat/java/android/support/v4/content/
ModernAsyncTask.java 52 abstract class ModernAsyncTask<Params, Progress, Result> {
242 * @param values The values indicating progress.
248 protected void onProgressUpdate(Progress... values) {
318 * task should be interrupted; otherwise, in-progress tasks are allowed
394 public final ModernAsyncTask<Params, Progress, Result> execute(Params... params) {
428 public final ModernAsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec,
469 * @param values The progress values to update the UI with.
474 protected final void publishProgress(Progress... values) {
477 new AsyncTaskResult<Progress>(this, values)).sendToTarget();
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
Progress.java 31 public final class Progress {
65 new Progress().run();
  /packages/apps/TV/src/com/android/tv/dvr/provider/
AsyncDvrDbTask.java 36 public abstract class AsyncDvrDbTask<Params, Progress, Result>
37 extends AsyncTask<Params, Progress, Result> {
  /external/lzma/CPP/7zip/Common/
CWrappers.h 12 ICompressProgressInfo *Progress;
15 CCompressProgressWrap(ICompressProgressInfo *progress) throw();
CWrappers.cpp 18 p->Res = p->Progress->SetRatioInfo(CONVERT_PR_VAL(inSize), CONVERT_PR_VAL(outSize));
22 CCompressProgressWrap::CCompressProgressWrap(ICompressProgressInfo *progress) throw()
24 p.Progress = CompressProgress;
25 Progress = progress;
  /art/compiler/debug/
elf_gnu_debugdata_writer.h 70 callbacks.Progress = XzCallbacks::ProgressImpl;
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
progress_callback.py 15 """Helper functions for progress callbacks."""
23 # Default upper and lower bounds for progress callback frequency.
27 # Max width of URL to display in progress indicator. Wide enough to allow
33 """Makes progress callbacks with exponential backoff to a maximum value.
63 def Progress(self, bytes_processed):
64 """Tracks byte processing progress, making a callback if necessary."""
71 # headers+metadata during their send progress. If the size is unknown,
72 # we can't do this and the progress message will make it appear that we
92 Thus, concurrent output (gsutil -m) leaves progress counters in a readable
101 Formatted announce text for outputting operation progress
    [all...]
  /external/opencv3/modules/videoio/src/
cap_winrt_capture.cpp 61 asyncTask->Progress = ref new AsyncActionProgressHandler<int>([=](IAsyncActionWithProgress<int>^ act, int progress)
63 int action = progress;
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
ExtendedBitmapDrawable.java 69 private Progress mProgress;
92 // Placeholder and progress.
127 // Progress bar is optional.
130 mProgress = new Progress(mOpts.progressBar.getConstantState().newDrawable(mResources), mResources,
265 * The reason for this is that we need the placeholder and progress bar to be drawn over our
294 * Overriding this method to add your own custom placeholder or progress drawing.
388 * Each attachment gets its own placeholder and progress indicator, to be shown, hidden,
441 Log.v(TAG, String.format("OUT stateful setLoadState. new=%s placeholder=%s progress=%s",
534 private static class Progress extends TileDrawable {
538 public Progress(Drawable progress, Resources res
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
AsyncDbTask.java 47 * @param <Progress> the type of the progress units published during the background computation.
50 public abstract class AsyncDbTask<Params, Progress, Result>
51 extends AsyncTask<Params, Progress, Result> {
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 100 virtual HRESULT Progress() = 0;
108 CMyComPtr<ICompressProgressInfo> progress; member in struct:NArchive::NXz::CVirtProgress_To_LocalProgress
110 HRESULT Progress();
113 HRESULT CVirtProgress_To_LocalProgress::Progress()
151 HRESULT Decode2(ISequentialInStream *seqInStream, ISequentialOutStream *outStream, IDecodeState &progress)
153 RINOK(progress.Decode(seqInStream, outStream));
154 _stat = progress;
402 COpenCallbackWrap(IArchiveOpenCallback *progress);
414 p.Progress = OpenCallbackProgress;
432 HRESULT Progress();
888 CMyComPtr<ICompressProgressInfo> progress = lps; local
    [all...]
  /external/lzma/C/
MtCoder.c 58 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize)
60 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
63 static void MtProgress_Init(CMtProgress *p, ICompressProgress *progress)
69 p->progress = progress;
89 p->res = Progress(p->progress, p->totalInSize, p->totalOutSize);
280 MtProgress_Init(&p->mtProgress, p->progress);

Completed in 1053 milliseconds

1 2 3