/external/jpeg/ |
jcapimin.c | 61 cinfo->progress = NULL; 163 if (cinfo->progress != NULL) { 164 cinfo->progress->pass_counter = (long) iMCU_row; 165 cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows; 166 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
|
/external/mesa3d/src/glsl/ |
lower_variable_index_to_cond_assign.cpp | 218 this->progress = false; 225 bool progress; member in class:variable_index_to_cond_assign_visitor 322 this->progress = true; 336 this->progress = true; 357 return v.progress;
|
lower_vec_index_to_cond_assign.cpp | 52 progress = false; 64 bool progress; member in class:ir_vec_index_to_cond_assign_visitor 122 this->progress = true; 212 this->progress = true; 257 return v.progress;
|
opt_copy_propagation.cpp | 73 progress = false; 103 bool progress; member in class:ir_copy_propagation_visitor 171 this->progress = true; 329 this->progress = true; 347 return v.progress;
|
/external/qemu/distrib/jpeg-6b/ |
jcapimin.c | 61 cinfo->progress = NULL; 163 if (cinfo->progress != NULL) { 164 cinfo->progress->pass_counter = (long) iMCU_row; 165 cinfo->progress->pass_limit = (long) cinfo->total_iMCU_rows; 166 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
GradientsActivity.java | 60 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { 61 gradientView.setRotationY((float) progress); 62 radialGradientView.setRotationX((float) progress); 63 sweepGradientView.setRotationY((float) progress); 64 bitmapView.setRotationX((float) progress);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
AudioTrackView.java | 271 * The audio track processing progress 273 * @param progress The progress 275 public void setProgress(int progress) { 276 mProgress = progress;
|
/packages/apps/Settings/src/com/android/settings/ |
CryptKeeper.java | 71 * -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \ 80 /** Message sent to us to indicate encryption update progress. */ 98 private static final String FORCE_VIEW_PROGRESS = "progress"; 343 final String progress = SystemProperties.get("vold.encrypt_progress"); local 344 if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) { 396 Log.d(TAG, "Encryption progress screen initializing."); 407 // Start the first run of progress manually. This method sets up messages to occur at 446 int progress = 0; local 448 // Force a 50% progress state when debugging the view. 449 progress = isDebugView() ? 50 : Integer.parseInt(state) [all...] |
TrustedCredentialsSettings.java | 74 private Tab(String tag, int label, int view, int progress, int list, boolean checkbox) { 78 mProgress = progress; 227 int progress = 0; local 236 publishProgress(++progress, max); 242 int progress = progressAndMax[0]; local 247 mProgressBar.setProgress(progress);
|
/external/libnfc-nxp/src/ |
phFriNfc_MifStdFormat.h | 53 #define PH_FRINFC_MFSTD_FMT_AUTH_SECT 1 /*!< Sector authentication is in progress */ 54 #define PH_FRINFC_MFSTD_FMT_DIS_CON 2 /*!< Disconnect is in progress */ 55 #define PH_FRINFC_MFSTD_FMT_CON 3 /*!< Connect is in progress */ 56 #define PH_FRINFC_MFSTD_FMT_POLL 4 /*!< Poll is in progress */ 57 #define PH_FRINFC_MFSTD_FMT_RD_SECT_TR 5 /*!< Read sector trailer is in progress */ 58 #define PH_FRINFC_MFSTD_FMT_WR_SECT_TR 6 /*!< Write sector trailer is in progress */ 59 #define PH_FRINFC_MFSTD_FMT_WR_TLV 7 /*!< Write sector trailer is in progress */ 60 #define PH_FRINFC_MFSTD_FMT_WR_MAD_BLK 8 /*!< Write MAD is in progress */ 61 #define PH_FRINFC_MFSTD_FMT_UPD_MAD_BLK 9 /*!< Write MAD is in progress */
|
phFriNfc_LlcpTransport.h | 387 * \retval NFCSTATUS_SHUTDOWN Shutdown in progress. 411 * \retval NFCSTATUS_SHUTDOWN Shutdown in progress. 592 * \retval NFCSTATUS_PENDING Connection operation is in progress, 620 * \retval NFCSTATUS_PENDING Connection operation is in progress, 625 * \retval NFCSTATUS_SHUTDOWN Shutdown in progress. 648 * \retval NFCSTATUS_PENDING Disconnection operation is in progress, 653 * \retval NFCSTATUS_SHUTDOWN Shutdown in progress. [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();
|
/packages/apps/Phone/src/com/android/phone/ |
InCallUiState.java | 189 // progress dialog (like "turning on radio for emergency call"). 277 // Progress indications 282 * an indefinite progress spinner. 286 * No progress indication needs to be shown. 305 * The current progress indication that should be shown 307 * to bring up an indefinite progress spinner along with a message 323 * @return the current progress indication type, or ProgressIndicationType.NONE 324 * if no progress indication is currently active. 330 /** @return true if a progress indication is currently active. */
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RemoteViewsTest.java | 233 ProgressBar progress = (ProgressBar) mResult.findViewById(R.id.remoteView_progress); local 234 assertEquals(100, progress.getMax()); 235 assertEquals(0, progress.getProgress()); 237 assertFalse(progress.isIndeterminate()); 241 // make the bar indeterminate will not affect max and progress 242 assertEquals(100, progress.getMax()); 243 assertEquals(0, progress.getProgress()); 244 assertTrue(progress.isIndeterminate()); 248 assertEquals(60, progress.getMax()); 249 assertEquals(50, progress.getProgress()) 393 ProgressBar progress = (ProgressBar) mResult.findViewById(R.id.remoteView_progress); local [all...] |
SeekBarTest.java | 74 // while starting to track, the progress is changed also 123 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) {
|
/development/samples/BrowserPlugin/jni/audio/ |
AudioPlugin.cpp | 81 // TODO we need to properly update the progress value 82 play->progress = 1; 107 m_soundPlay->progress = 0; 231 // draw the progress bar 232 if (m_soundPlay->progress > 0) { 233 // TODO need to draw progress bar to cover the proper percentage of the track bar
|
/external/qemu/android/ |
async-socket.h | 57 /* Defines client's callback set to monitor I/O progress. 60 * asio - Async I/O in progress. 200 * reader_cb - Callback to monitor I/O progress (must not be NULL). 214 * reader_cb - Callback to monitor I/O progress (must not be NULL). 228 * writer_cb - Callback to monitor I/O progress (must not be NULL). 242 * writer_cb - Callback to monitor I/O progress (must not be NULL)
|
/external/webkit/Tools/MiniBrowser/qt/ |
BrowserWindow.cpp | 188 void BrowserWindow::loadProgress(int progress) 194 if (progress <= 0 || progress >= 100) 199 gradient.setColorAt(((double) progress) / 100, progressColor); 200 if (progress != 100) 201 gradient.setColorAt((double) progress / 100 + 0.001, backgroundColor);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
ProgressView.java | 38 * Implements a "view" that uses an existing progress bar, status button and
67 * widgets used to display and update a progress + status bar.
71 * @param progressBar The progress bar to update during a task. Must not be null.
264 * Sets the max value of the progress bar.
280 * Sets the current value of the progress bar.
294 * Returns the current value of the progress bar,
|
/packages/apps/Email/src/com/android/email/service/ |
AttachmentDownloadService.java | 151 * Watchdog alarm receiver; responsible for making sure that downloads in progress are not 265 // NOTE: We don't yet support deleting downloads in progress 394 * Count the number of running downloads in progress for this account 432 // If there are downloads in progress, reset alarm 646 * We use an EmailServiceCallback to keep track of the progress of downloads. These callbacks 653 int progress) { 654 // Record status and progress 661 case EmailServiceStatus.IN_PROGRESS: code = "In progress"; break; 666 } else if (progress >= (req.lastProgress + 15)) { 667 Log.d(TAG, ">> Attachment " + attachmentId + ": " + progress + "%") [all...] |
/external/e2fsprogs/misc/ |
mke2fs.c | 307 * These functions implement a generalized progress meter. 316 static void progress_init(struct progress_struct *progress, 321 memset(progress, 0, sizeof(struct progress_struct)); 329 sprintf(progress->format, "%%%dd/%%%dld", i, i); 330 memset(progress->backup, '\b', sizeof(progress->backup)-1); 331 progress->backup[sizeof(progress->backup)-1] = 0; 332 if ((2*i)+1 < (int) sizeof(progress->backup)) 333 progress->backup[(2*i)+1] = 0 365 struct progress_struct progress; local 550 struct progress_struct progress; local [all...] |
/external/chromium/chrome/browser/download/ |
save_item.cc | 60 // Cancel this saving item job. If the job is not in progress, ignore 61 // this command. The SavePackage will each in-progress SaveItem's cancel
|
/external/chromium/chrome/browser/sync/glue/ |
data_type_controller.h | 34 ASSOCIATING, // Model association is in progress. 46 BUSY, // Start() was called while already in progress.
|
/external/chromium/chrome/browser/ui/find_bar/ |
find_tab_helper.h | 22 // function does not block while a search is in progress. The controller will 82 // is in progress. This can also be set if a page has been reloaded, and will
|
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_adapter.cc | 65 // Skip if there is a batch update in progress. 85 // Skip if there is a batch update in progress.
|