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

1 2 3 4 5

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressDialog.java 15 private boolean indeterminate; field in class:ShadowProgressDialog
23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) {
24 return show(context, title, message, indeterminate, false, null);
28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) {
29 return show(context, title, message, indeterminate, cancelable, null);
33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) {
37 progressDialog.setIndeterminate(indeterminate);
46 public void setIndeterminate(boolean indeterminate) {
47 this.indeterminate = indeterminate;
    [all...]
ShadowProgressBar.java 60 public void setIndeterminate(boolean indeterminate) {
61 this.isIndeterminate = indeterminate;
  /external/chromium-trace/catapult/third_party/polymer/components/paper-progress/
paper-progress.css 39 #activeProgress.indeterminate {
42 -webkit-animation: indeterminate-bar 1s linear infinite;
43 animation: indeterminate-bar 1s linear infinite;
46 @-webkit-keyframes indeterminate-bar {
58 @keyframes indeterminate-bar {
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
ProgressBarWrapper.java 26 * gracefully switching back and forth between indeterminate and determinate
35 ProgressBar indeterminate, boolean isIndeterminate) {
37 mIndeterminate = indeterminate;
  /frameworks/base/core/java/android/app/
ProgressDialog.java 98 CharSequence message, boolean indeterminate) {
99 return show(context, title, message, indeterminate, false, null);
103 CharSequence message, boolean indeterminate, boolean cancelable) {
104 return show(context, title, message, indeterminate, cancelable, null);
108 CharSequence message, boolean indeterminate,
113 dialog.setIndeterminate(indeterminate);
295 public void setIndeterminate(boolean indeterminate) {
297 mProgress.setIndeterminate(indeterminate);
299 mIndeterminate = indeterminate;
  /cts/tests/app/app/src/android/app/stubs/
AppStubActivity.java 110 public boolean setProBarIndeterminate(boolean indeterminate){
111 mIndterminate = indeterminate;
112 super.setProgressBarIndeterminate(indeterminate);
  /packages/apps/UnifiedEmail/src/com/android/mail/
MinTimeProgressDialog.java 116 CharSequence message, boolean indeterminate, boolean cancelable,
122 dialog.setIndeterminate(indeterminate);
  /external/skia/tools/
test_gpuveto.py 64 self.indeterminate = 0
78 self.indeterminate))
137 self.indeterminate += 1
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentProgressDialogFragment.java 111 public void setIndeterminate(boolean indeterminate) {
113 mDialog.setIndeterminate(indeterminate);
AttachmentActionHandler.java 185 // We don't want the progress bar to switch back to indeterminate mode after
187 final boolean indeterminate = !showProgress && dialog.isIndeterminate();
188 dialog.setIndeterminate(indeterminate);
  /cts/tests/tests/widget/src/android/widget/cts/
ProgressBarTest.java 65 // because default is Indeterminate only progressBar, can't change the status
134 // when in indeterminate mode
161 // when in indeterminate mode
362 assertEquals("Indeterminate tint inflated correctly",
364 assertEquals("Indeterminate tint mode inflated correctly",
367 MockDrawable indeterminate = new MockDrawable(); local
370 view.setIndeterminateDrawable(indeterminate);
371 assertFalse("No indeterminate tint applied by default", indeterminate.hasCalledSetTint());
374 assertTrue("Indeterminate tint applied when setIndeterminateTintList() called after
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
IngestActivity.java 89 // we switch to the animated indeterminate progress bar after the timeout
509 boolean indeterminate = (mProgressState.max == 0);
510 dialog.setIndeterminate(indeterminate);
511 dialog.setProgressStyle(indeterminate ? ProgressDialog.STYLE_SPINNER
519 if (!indeterminate) {
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 237 final ProgressBar indeterminate = local
241 mPhotoProgressBar = new ProgressBarWrapper(determinate, indeterminate, true);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatActivity.java 315 public void setSupportProgressBarIndeterminate(boolean indeterminate) {
  /frameworks/base/core/java/android/widget/
ProgressBar.java 77 * A progress bar can also be made indeterminate. In indeterminate mode, the
79 * applications when the length of the task is unknown. The indeterminate progress bar can be either
122 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a
563 * <li>indeterminate = false</li>
582 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
584 * @return true if the progress bar is in indeterminate mode
592 * <p>Change the indeterminate mode for this progress bar. In indeterminate
596 * If this progress bar's style only supports indeterminate mode (such as the circula
    [all...]
RemoteViews.java     [all...]
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha3/
repository-25.2.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha4/
repository-25.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha6/
repository-25.2.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha7/
repository-25.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-beta1/
repository-25.2.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-beta2/
repository-25.2.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-beta3/
repository-25.2.0-beta3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/repository/25.2.0-alpha7/
repository-25.2.0-alpha7.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/repository/25.2.0-beta1/
repository-25.2.0-beta1.jar 

Completed in 777 milliseconds

1 2 3 4 5