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

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
ProgressHandler.java 4 * Callback interface for SQLite's user defined progress handler.
16 public boolean progress(); method in interface:ProgressHandler
  /external/mockito/src/main/java/org/mockito/internal/progress/
package-info.java 7 * Mocking progress stateful classes.
9 package org.mockito.internal.progress;
SequenceNumber.java 5 package org.mockito.internal.progress;
ThreadSafeMockingProgress.java 5 package org.mockito.internal.progress;
  /frameworks/base/core/java/android/os/
IRecoverySystemProgressListener.aidl 23 void onProgress(int progress);
  /frameworks/native/cmds/dumpstate/binder/android/os/
IDumpstateListener.aidl 25 void onProgressUpdated(int progress);
  /external/curl/lib/
progress.c 27 #include "progress.h"
128 pgrsUpdate() - show progress
137 data->progress.lastshow=0;
142 if(!(data->progress.flags & PGRS_HIDE) &&
143 !data->progress.callback)
144 /* only output if we don't use a progress callback and we're not
148 data->progress.speeder_c = 0; /* reset the progress meter display */
155 data->progress.t_nslookup = 0.0;
156 data->progress.t_connect = 0.0
    [all...]
  /external/e2fsprogs/lib/ext2fs/
progress.c 2 * progress.c - Numeric progress meter
38 struct ext2fs_numeric_progress_struct * progress,
43 * progress-related messages, whereas the SKIP_PROGRESS
55 memset(progress, 0, sizeof(*progress));
57 progress->skip_progress++;
63 progress->max = max;
64 progress->log_max = int_log10(max);
74 struct ext2fs_numeric_progress_struct * progress,
    [all...]
  /external/mesa3d/src/glsl/
lower_noise.cpp 36 lower_noise_visitor() : progress(false)
55 this->progress = true;
59 bool progress; member in class:lower_noise_visitor
70 return v.progress;
opt_dead_code.cpp 48 bool progress = false; local
83 progress = true;
110 progress = true;
119 return progress;
132 bool progress = false; local
147 progress = true;
152 return progress;
opt_noop_swizzle.cpp 44 this->progress = false;
48 bool progress; member in class:__anon27640::ir_noop_swizzle_visitor
73 this->progress = true;
83 return v.progress;
  /libcore/ojluni/src/main/java/sun/net/
ProgressEvent.java 31 * ProgressEvent represents an progress event in monitering network input stream.
44 private long progress; field in class:ProgressEvent
53 public ProgressEvent(ProgressSource source, URL url, String method, String contentType, ProgressSource.State state, long progress, long expected) {
58 this.progress = progress;
64 * Return URL related to the progress.
88 * Return current progress value.
92 return progress;
96 * Return expected maximum progress value; -1 if expected is unknown.
111 + ", content-type=" + contentType + ", progress=" + progress + ", expected=" + expected + "]"
    [all...]
ProgressSource.java 30 * ProgressSource represents the source of progress changes.
45 private long progress = 0; field in class:ProgressSource
56 // progress monitor
60 * Construct progress source object.
67 * Construct progress source object.
73 this.progress = 0;
91 * Close progress source.
98 * Return URL of progress source.
124 * Return current progress.
127 return progress;
    [all...]
  /external/libmtp/examples/
pathutils.h 25 int progress (const uint64_t, const uint64_t, void const * const);
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompat.java 42 * @return a map of active installs to their progress
52 public int progress; field in class:PackageInstallerCompat.PackageInstallInfo
58 public PackageInstallInfo(String packageName, int state, int progress) {
61 this.progress = progress;
  /external/libjpeg-turbo/
jdtrans.c 59 /* Call progress monitor hook if present */
60 if (cinfo->progress != NULL)
61 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
68 /* Advance progress counter if appropriate */
69 if (cinfo->progress != NULL &&
71 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
73 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
137 /* Initialize progress monitoring. */
138 if (cinfo->progress != NULL)
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdtrans.c 56 /* Call progress monitor hook if present */
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
65 /* Advance progress counter if appropriate */
66 if (cinfo->progress != NULL &&
68 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
70 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
125 /* Initialize progress monitoring. */
126 if (cinfo->progress != NULL)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressBar.java 11 private int progress; field in class:ShadowProgressBar
29 if (progress > max) {
30 progress = max;
40 public void setProgress(int progress) {
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
46 return isIndeterminate ? 0 : progress;
71 if (!isIndeterminate()) setProgress(progress + diff);
ShadowSeekBar.java 24 public void setProgress(int progress) {
25 super.setProgress(progress);
27 listener.onProgressChanged( realSeekBar, progress, true);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailServiceCallback.aidl 23 * statuscode = 1, progress = 0: "starting"
24 * statuscode = 0, progress = n/a: "finished"
27 * statuscode = err, progress = n/a: "stopping due to error"
30 * statuscode = 1, progress = 0: "starting"
31 * statuscode = 1, progress = 30: "working"
32 * statuscode = 1, progress = 60: "working"
33 * statuscode = 0, progress = n/a: "finished"
40 * statusCode = 0 for OK, 1 for progress, other codes for error
41 * progress = 0 for "start", 1..100 for optional progress report
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
FloatAnimation.java 33 protected void onCalculate(float progress) {
34 mCurrent = mFrom + (mTo - mFrom) * progress;
  /external/lzma/CPP/7zip/Compress/
CopyCoder.cpp 23 ICompressProgressInfo *progress)
46 if (progress)
48 RINOK(progress->SetRatioInfo(&TotalSize, &TotalSize));
60 HRESULT CopyStream(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress)
63 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);
66 HRESULT CopyStream_ExactSize(ISequentialInStream *inStream, ISequentialOutStream *outStream, UInt64 size, ICompressProgressInfo *progress)
70 RINOK(copyCoder->Code(inStream, outStream, NULL, &size, progress));
CopyCoder.h 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
30 HRESULT CopyStream(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress);
31 HRESULT CopyStream_ExactSize(ISequentialInStream *inStream, ISequentialOutStream *outStream, UInt64 size, ICompressProgressInfo *progress);
  /external/syslinux/gpxe/src/core/
job.c 48 struct job_progress *progress ) {
51 dest->op->progress ( dest, progress );
73 struct job_progress *progress ) {
74 memset ( progress, 0, sizeof ( *progress ) );
81 .progress = ignore_job_progress,
  /packages/apps/Launcher3/src/com/android/launcher3/util/
CircleRevealOutlineProvider.java 45 public void setProgress(float progress) {
46 mOutlineRadius = (1 - progress) * mRadius0 + progress * mRadius1;

Completed in 581 milliseconds

1 2 3 4 5 6 7 8 91011>>