/external/mockito/src/org/mockito/internal/progress/ |
SequenceNumber.java | 5 package org.mockito.internal.progress;
|
ArgumentMatcherStorageImpl.java | 6 package org.mockito.internal.progress; 29 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportMatcher(org.hamcrest.Matcher) 37 * @see org.mockito.internal.progress.ArgumentMatcherStorage#pullLocalizedMatchers() 50 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportAnd() 60 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportOr() 70 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportNot() 109 * @see org.mockito.internal.progress.ArgumentMatcherStorage#validateState() 120 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reset()
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
page-reload-cancel-permission-requests-expected.txt | 1 Tests that when a page is reloaded, the frame is properly detached from the Geolocation object to ensure that no permission requests are in progress.
|
/frameworks/base/media/java/android/media/videoeditor/ |
ExtractAudioWaveformProgressListener.java | 29 * This method notifies the listener of the progress status of 33 * @param progress The progress in %. At the beginning of the operation, 36 public void onProgress(int progress);
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/ |
ProgressMonitor.java | 35 * Monitor the progress of an expensive terrain operation. 38 * call the incrementProgress method whenever they determine that progress 49 * Increment the progress by a unit. 54 * The max value that when reached, the progress is at 100%. 59 * The max value of the progress. When incrementProgress() 60 * reaches this value, progress is complete 65 * The progress has completed
|
/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/marisa-trie/tests/ |
unit-test.cc | 9 #include <marisa/progress.h> 225 marisa::Progress progress(0); 227 ASSERT(progress.is_valid()); 228 while (!progress.is_last()) { 229 ++progress; 231 ASSERT(progress.is_last()); 232 ASSERT(progress.flags() == MARISA_DEFAULT_FLAGS); 233 ASSERT(progress.trie_id() == progress.num_tries() - 1) [all...] |
/external/marisa-trie/v0_1_5/tests/ |
unit-test.cc | 9 #include <marisa_alpha/progress.h> 228 marisa_alpha::Progress progress(0); 230 ASSERT(progress.is_valid()); 231 while (!progress.is_last()) { 232 ++progress; 234 ASSERT(progress.is_last()); 235 ASSERT(progress.flags() == MARISA_ALPHA_DEFAULT_FLAGS); 236 ASSERT(progress.trie_id() == progress.num_tries() - 1) [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
LevelsV4.java | 122 public void onBar1Changed(int progress) { 123 mSaturation = (float)progress / 50.0f; 126 public void onBar2Changed(int progress) { 127 mInBlack = (float)progress; 130 public void onBar3Changed(int progress) { 131 mOutBlack = (float)progress; 134 public void onBar4Changed(int progress) { 135 mInWhite = (float)progress + 127.0f; 138 public void onBar5Changed(int progress) { 139 mOutWhite = (float)progress + 127.0f [all...] |
Vignette.java | 75 public void onBar1Changed(int progress) { 76 scale = progress / 50.0f; 79 public void onBar2Changed(int progress) { 80 shade = progress / 100.0f; 83 public void onBar3Changed(int progress) { 84 slope = (float)progress; 87 public void onBar4Changed(int progress) { 88 center_x = progress / 100.0f; 91 public void onBar5Changed(int progress) { 92 center_y = progress / 100.0f [all...] |
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
LevelsV4.java | 116 public void onBar1Changed(int progress) { 117 mSaturation = (float)progress / 50.0f; 120 public void onBar2Changed(int progress) { 121 mInBlack = (float)progress; 124 public void onBar3Changed(int progress) { 125 mOutBlack = (float)progress; 128 public void onBar4Changed(int progress) { 129 mInWhite = (float)progress + 127.0f; 132 public void onBar5Changed(int progress) { 133 mOutWhite = (float)progress + 127.0f [all...] |
Vignette.java | 71 public void onBar1Changed(int progress) { 72 scale = progress / 50.0f; 75 public void onBar2Changed(int progress) { 76 shade = progress / 100.0f; 79 public void onBar3Changed(int progress) { 80 slope = (float)progress; 83 public void onBar4Changed(int progress) { 84 center_x = progress / 100.0f; 87 public void onBar5Changed(int progress) { 88 center_y = progress / 100.0f [all...] |
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
LevelsV4.java | 122 public void onBar1Changed(int progress) { 123 mSaturation = (float)progress / 50.0f; 126 public void onBar2Changed(int progress) { 127 mInBlack = (float)progress; 130 public void onBar3Changed(int progress) { 131 mOutBlack = (float)progress; 134 public void onBar4Changed(int progress) { 135 mInWhite = (float)progress + 127.0f; 138 public void onBar5Changed(int progress) { 139 mOutWhite = (float)progress + 127.0f [all...] |
Vignette.java | 75 public void onBar1Changed(int progress) { 76 scale = progress / 50.0f; 79 public void onBar2Changed(int progress) { 80 shade = progress / 100.0f; 83 public void onBar3Changed(int progress) { 84 slope = (float)progress; 87 public void onBar4Changed(int progress) { 88 center_x = progress / 100.0f; 91 public void onBar5Changed(int progress) { 92 center_y = progress / 100.0f [all...] |
/frameworks/base/core/java/android/widget/ |
SeekBar.java | 28 * the thumb and drag left or right to set the current progress level or use the arrow keys. 39 * A callback that notifies clients when the progress level has been 47 * Notification that the progress level has changed. Clients can use the fromUser parameter 50 * @param seekBar The SeekBar whose progress has changed 51 * @param progress The current progress level. This will be in the range 0..max where max 53 * @param fromUser True if the progress change was initiated by the user. 55 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); 96 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
|
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
SeekBar.java | 26 * the thumb and drag left or right to set the current progress level or use the arrow keys. 37 * A callback that notifies clients when the progress level has been 45 * Notification that the progress level has changed. Clients can use the fromUser parameter 48 * @param seekBar The SeekBar whose progress has changed 49 * @param progress The current progress level. This will be in the range 0..max where max 51 * @param fromUser True if the progress change was initiated by the user. 53 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); 94 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
|
/external/jpeg/ |
wrrle.c | 83 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 139 if (progress != NULL) { 140 progress->total_extra_passes++; /* count file writing as separate pass */ 182 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 215 if (progress != NULL) { 216 progress->pub.pass_limit = cinfo->output_height; 217 progress->pub.pass_counter = 0; 218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo) [all...] |
jdapistd.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; 135 /* Call progress monitor hook if present */ 136 if (cinfo->progress != NULL) [all...] |
/external/qemu/distrib/jpeg-6b/ |
wrrle.c | 83 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 139 if (progress != NULL) { 140 progress->total_extra_passes++; /* count file writing as separate pass */ 182 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 215 if (progress != NULL) { 216 progress->pub.pass_limit = cinfo->output_height; 217 progress->pub.pass_counter = 0; 218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo) [all...] |
jdapistd.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; 135 /* Call progress monitor hook if present */ 136 if (cinfo->progress != NULL) [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ZoomControl.java | 51 * The progress value has changed 53 * @param progress The progress value 56 public void onProgressChanged(int progress, boolean fromUser); 62 // Set the default maximum progress 101 * @param progress The progress 103 public void setProgress(int progress) { 104 mProgress = progress; 154 final int progress; local [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
StatusBarController.java | 42 private final JProgressBar progress = new JProgressBar(); field in class:StatusBarController 51 progress.setPreferredSize(new Dimension(100, 15)); 59 panel.add(progress); 84 this.progress.setIndeterminate(value); 88 this.progress.setIndeterminate(false); 89 this.progress.setValue(value);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ProgressBarTest.java | 41 for (int progress : testValues) { 42 progressBar.setProgress(progress); 43 assertThat(progressBar.getProgress(), equalTo(progress)); 49 for (int progress : testValues) { 50 progressBar.setSecondaryProgress(progress); 51 assertThat(progressBar.getSecondaryProgress(), equalTo(progress));
|
/packages/apps/Mms/src/com/android/mms/ui/ |
AsyncDialog.java | 28 * than half a second, a progress modal dialog is displayed. 42 * Asynchronously executes a task while blocking the UI with a progress spinner. 57 // Shows the activity's progress spinner. Should be canceled if exiting the activity. 68 // remove any callback to display a progress spinner 76 * Displays a progress spinner while the tasks are running. The progress spinner 93 // lazy initialization of progress dialog for loading attachments 101 * Initializes the progress dialog with its intended settings. 113 * Activates a progress spinner on the UI. This assumes the UI has invoked this Task. 132 // Test code. Uncomment this block to test the progress dialog popping up [all...] |
/external/chromium/chrome/browser/download/ |
download_status_updater_delegate.h | 12 // Returns true if the progress is known (i.e. we know the final size 16 // Returns the number of downloads that are in progress.
|