Searched refs:Progress (Results 1 - 25 of 56) sorted by relevance

123

/external/robolectric/src/main/java/android/os/
H A DShadowAsyncTaskBridge.java6 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/common/
H A DProgress.js35 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
[all...]
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.js318 this.nodeProgressForeground_.width = Download.Progress.width;
319 this.nodeProgressForeground_.height = Download.Progress.height;
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;
498 Download.Progress.width = Download.Progress.SIDE * Download.Progress
[all...]
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dwrite_from_file_operation_unittest.cc88 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);
H A Ddestroy_partitions_operation_unittest.cc53 test_utils_.GetUtilityClient()->Progress(0);
54 test_utils_.GetUtilityClient()->Progress(50);
55 test_utils_.GetUtilityClient()->Progress(100);
H A Doperation_unittest.cc176 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);
H A Dimage_writer_private_apitest.cc76 base::Bind(&FakeImageWriterClient::Progress,
82 base::Bind(&FakeImageWriterClient::Progress,
88 base::Bind(&FakeImageWriterClient::Progress,
H A Dtest_utils.h100 void Progress(int64 progress);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAsyncTask.java18 public class ShadowAsyncTask<Params, Progress, Result> {
20 @RealObject private AsyncTask<Params, Progress, Result> realAsyncTask;
76 public AsyncTask<Params, Progress, Result> execute(final Params... params) {
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/
H A Dlayer_animation_sequence_unittest.cc55 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_star
[all...]
H A Dlayer_animation_element_unittest.cc43 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_tim
[all...]
H A Dlayer_animation_sequence.h58 // 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
H A Dlayer_animation_sequence.cc55 void LayerAnimationSequence::Progress(base::TimeTicks now, function in class:ui::LayerAnimationSequence
89 if (elements_[current_index]->Progress(now, delegate))
H A Dlayer_animation_element.h156 // This must be called before the first call to Progress. If starting the
167 bool Progress(base::TimeTicks now, LayerAnimationDelegate* delegate);
169 // If calling Progress now, with the given time, will finish the animation,
179 // before OnStarted or Progress.
204 // call made to {Progress, ProgressToEnd}.
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DProgressIndicator.js33 * @implements {WebInspector.Progress}
70 this.dispatchEventToListeners(WebInspector.Progress.Events.Done);
76 this.dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
/external/chromium_org/chrome/browser/extensions/api/system_private/
H A Dsystem_private_apitest.cc50 IN_PROC_BROWSER_TEST_F(GetUpdateStatusApiTest, Progress) {
/external/lzma/CPP/7zip/Common/
H A DCWrappers.h12 ICompressProgressInfo *Progress; member in struct:CCompressProgressWrap
H A DCWrappers.cpp18 p->Res = p->Progress->SetRatioInfo(CONVERT_PR_VAL(inSize), CONVERT_PR_VAL(outSize));
24 p.Progress = CompressProgress;
25 Progress = progress;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DSourcesSearchScope.js60 * @param {!WebInspector.Progress} progress
69 progress.addEventListener(WebInspector.Progress.Events.Canceled, indexingCanceled);
75 compositeProgress.addEventListener(WebInspector.Progress.Events.Done, indexingFinishedCallback.bind(this, true));
112 * @param {!WebInspector.Progress} progress
194 * @param {!WebInspector.Progress} progress
/external/lzma/C/
H A DLzma2Enc.c236 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) function
238 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
286 res = Progress(progress, p->srcPos, packTotal);
H A DMtCoder.c56 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) function
58 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
87 p->res = Progress(p->progress, p->totalInSize, p->totalOutSize);
H A DTypes.h222 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize); member in struct:__anon26737
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCursor.h75 Progress, enumerator in enum:blink::Cursor::Type
/external/chromium_org/third_party/lzma_sdk/
H A DTypes.h222 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize); member in struct:__anon13453
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DTypes.h223 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize); member in struct:__anon14784

Completed in 493 milliseconds

123