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

1 2 3 4

  /external/robolectric/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_org/chrome/browser/ui/cocoa/
dock_icon.h 34 // Indicates whether the progress indicator should be in an indeterminate state
36 - (void)setIndeterminate:(BOOL)indeterminate;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
CheckboxInputType.cpp 79 state->indeterminate = element().indeterminate();
81 if (state->indeterminate)
92 element().setIndeterminate(state.indeterminate);
InputTypeView.h 64 bool indeterminate; member in struct:WebCore::FINAL
  /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/src/android/app/cts/
AppStubActivity.java 112 public boolean setProBarIndeterminate(boolean indeterminate){
113 mIndterminate = indeterminate;
114 super.setProgressBarIndeterminate(indeterminate);
  /packages/apps/UnifiedEmail/src/com/android/mail/
MinTimeProgressDialog.java 116 CharSequence message, boolean indeterminate, boolean cancelable,
122 dialog.setIndeterminate(indeterminate);
  /external/chromium_org/third_party/skia/tools/
test_gpuveto.py 64 self.indeterminate = 0
78 self.indeterminate))
137 self.indeterminate += 1
  /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);
  /external/chromium_org/third_party/WebKit/public/platform/
WebFallbackThemeEngine.h 90 bool indeterminate; // Whether the button state is indeterminate. member in struct:blink::WebFallbackThemeEngine::ButtonExtraParams
WebThemeEngine.h 128 bool indeterminate; // Whether the button state is indeterminate. member in struct:blink::WebThemeEngine::ButtonExtraParams
  /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
372 assertEquals("Indeterminate tint inflated correctly",
374 assertEquals("Indeterminate tint mode inflated correctly",
377 MockDrawable indeterminate = new MockDrawable(); local
380 view.setIndeterminateDrawable(indeterminate);
381 assertFalse("No indeterminate tint applied by default", indeterminate.hasCalledSetTint());
384 assertTrue("Indeterminate tint applied when setIndeterminateTintList() called after
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarCompat.java 65 android.R.attr.indeterminate,
123 final boolean indeterminate = a.getBoolean(3, mIndeterminate);
155 setIndeterminate(mOnlyIndeterminate || indeterminate);
238 * <li>indeterminate = false</li>
257 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
259 * @return true if the progress bar is in indeterminate mode
266 * <p>Change the indeterminate mode for this progress bar. In indeterminate
270 * If this progress bar's style only supports indeterminate mode (such as the circular
273 * @param indeterminate true to enable the indeterminate mod
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
SigninManager.java 357 // We don't have progress update, so this takes an indeterminate amount of time.
358 boolean indeterminate = true;
365 indeterminate, cancelable);
  /external/chromium_org/content/child/
webfallbackthemeengine_impl.cc 98 native_theme_extra_params->button.indeterminate =
99 extra_params->button.indeterminate;
webthemeengine_impl_android.cc 91 native_theme_extra_params->button.indeterminate =
92 extra_params->button.indeterminate;
webthemeengine_impl_default.cc 98 native_theme_extra_params->button.indeterminate =
99 extra_params->button.indeterminate;
  /external/chromium_org/ui/native_theme/
native_theme.h 101 bool indeterminate; // Whether the button state is indeterminate. member in struct:ui::NativeTheme::ButtonExtraParams
  /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) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.idl 44 attribute boolean indeterminate;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarActivity.java 319 * Sets the visibility of the indeterminate progress bar in the title.
333 * Sets whether the horizontal progress bar in the title should be indeterminate (the
334 * circular is always indeterminate).
339 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
341 public void setSupportProgressBarIndeterminate(boolean indeterminate) {
342 getDelegate().setSupportProgressBarIndeterminate(indeterminate);

Completed in 2103 milliseconds

1 2 3 4