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

1 2 3 4

  /external/marisa-trie/lib/marisa/
progress.h 8 class Progress {
10 explicit Progress(int flags);
17 Progress &operator++() {
57 Progress(const Progress &);
58 Progress &operator=(const Progress &);
progress.cc 1 #include "progress.h"
5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
20 bool Progress::is_valid() const {
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
progress.h 8 class Progress {
10 explicit Progress(int flags);
17 Progress &operator++() {
57 Progress(const Progress &);
58 Progress &operator=(const Progress &);
progress.cc 1 #include "progress.h"
5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
21 bool Progress::is_valid() const {
  /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) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Progress.js 35 WebInspector.Progress = function()
39 WebInspector.Progress.Events = {
43 WebInspector.Progress.prototype = {
82 * @param {!WebInspector.Progress} parent
92 parent.addEventListener(WebInspector.Progress.Events.Canceled, this._parentCanceled.bind(this));
104 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
106 this._children[i].dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
139 * @implements {WebInspector.Progress}
ProgressIndicator.js 33 * @implements {WebInspector.Progress}
39 this.element.className = "progress-bar-container";
41 this._progressElement = this.element.createChild("progress");
42 this._stopButton = new WebInspector.StatusBarButton(WebInspector.UIString("Cancel"), "progress-bar-stop-button");
81 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
  /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 54 sequence.Progress(start_time, &delegate);
56 sequence.Progress(start_time + base::TimeDelta::FromMilliseconds(500),
60 sequence.Progress(start_time + base::TimeDelta::FromMilliseconds(1000),
91 sequence.Progress(start_time, &delegate);
100 sequence.Progress(effective_start + delta/2, &delegate);
103 sequence.Progress(effective_start + delta, &delegate);
150 sequence.Progress(start_time, &delegate);
160 sequence.Progress(opacity_effective_start + delta/2, &delegate);
162 sequence.Progress(opacity_effective_start + delta, &delegate);
170 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
layer_animation_sequence.cc 53 void LayerAnimationSequence::Progress(base::TimeTicks now,
87 if (elements_[current_index]->Progress(now, delegate))
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
MtpDeviceIndex.java 115 public enum Progress {
119 private Progress mProgress = Progress.Uninitialized;
158 if (mProgress != Progress.Initialized) return null;
159 mProgress = Progress.Pending;
164 return mProgress == Progress.Finished;
167 synchronized public Progress getProgress() {
173 * @return Progress at the time the listener was added (useful for
176 synchronized public Progress setProgressListener(ProgressListener listener) {
195 return mProgress == Progress.Finished ? mUnifiedLookupIndex.length : 0
    [all...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VFL_transition.h 64 * M4VIFI_UInt32 Progress)
67 * Map the value of progress from (0 - 1000) to (0 - 1024)
69 * 1. from 0 to (Progress << 1) ;for Progress <= 512
70 * 2. from (( Progress - 512)<< 1) to 1024 ;otherwise
89 * @param Progress: (IN) Progress value (varies between 0 and 1000)
96 M4ViComImagePlane *pPlaneOut, UInt32 Progress);
  /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 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,
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ProgressTracker.cpp 43 // Always start progress at initialProgressValue. This helps provide feedback as
107 WTF_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());
122 WTF_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());
133 WTF_LOG(Progress, "Final progress complete (%p)", this);
137 // Before resetting progress value be sure to send client a least one notification
138 // with final progress value.
151 WTF_LOG(Progress, "Progress incremented (%p) - value %f, tracked frames %d, originating frame %p", this, m_progress (…)
    [all...]
  /external/chromium_org/chrome_frame/
urlmon_bind_status_callback.h 109 STDMETHOD(OnProgress)(ULONG progress, ULONG progress_max, ULONG status_code,
116 // is it a good time to start caching progress notifications
122 // A structure to cache the progress notifications.
123 class Progress {
125 Progress(ULONG progress, ULONG progress_max, ULONG status_code,
127 : progress_(progress),
141 ~Progress() {
144 ULONG progress() const { function in class:BSCBStorageBind::Progress
165 // progress notifications back exactly as we got them. NULL and L"" ar
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/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/extensions/api/system_private/
system_private_apitest.cc 55 IN_PROC_BROWSER_TEST_F(GetUpdateStatusApiTest, Progress) {
  /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;
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AttachmentDrawable.java 58 // each attachment gets its own placeholder and progress indicator, to be shown, hidden,
62 private Progress mProgress;
91 final Drawable progress) {
106 mProgress = new Progress(progress.getConstantState().newDrawable(res), res,
421 LogUtils.v(LOG_TAG, "OUT stateful AD.setState. new=%s placeholder=%s progress=%s",
512 private static class Progress extends TileDrawable {
516 public Progress(Drawable progress, Resources res,
519 super(progress, coordinates.progressBarWidth, coordinates.progressBarHeight
    [all...]

Completed in 2307 milliseconds

1 2 3 4