Searched refs:indeterminate (Results 1 - 25 of 33) sorted by relevance

12

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowProgressDialog.java15 private boolean indeterminate; field in class:ShadowProgressDialog
23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { argument
24 return show(context, title, message, indeterminate, false, null);
28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { argument
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) { argument
37 progressDialog.setIndeterminate(indeterminate);
46 public void setIndeterminate(boolean indeterminate) { argument
47 this.indeterminate = indeterminate;
[all...]
H A DShadowProgressBar.java60 public void setIndeterminate(boolean indeterminate) { argument
61 this.isIndeterminate = indeterminate;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DCheckboxInputType.cpp79 state->indeterminate = element().indeterminate();
81 if (state->indeterminate)
92 element().setIndeterminate(state.indeterminate);
102 return element().indeterminate();
H A DInputTypeView.h65 bool indeterminate; member in struct:blink::FINAL
/external/chromium_org/chrome/browser/ui/cocoa/
H A Ddock_icon.h34 // Indicates whether the progress indicator should be in an indeterminate state
36 - (void)setIndeterminate:(BOOL)indeterminate;
/external/chromium_org/third_party/skia/tools/
H A Dtest_gpuveto.py64 self.indeterminate = 0
78 self.indeterminate))
137 self.indeterminate += 1
/external/skia/tools/
H A Dtest_gpuveto.py64 self.indeterminate = 0
78 self.indeterminate))
137 self.indeterminate += 1
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFallbackThemeEngine.h90 bool indeterminate; // Whether the button state is indeterminate. member in struct:blink::WebFallbackThemeEngine::ButtonExtraParams
H A DWebThemeEngine.h128 bool indeterminate; // Whether the button state is indeterminate. member in struct:blink::WebThemeEngine::ButtonExtraParams
/external/chromium_org/content/child/
H A Dwebfallbackthemeengine_impl.cc98 native_theme_extra_params->button.indeterminate =
99 extra_params->button.indeterminate;
H A Dwebthemeengine_impl_android.cc91 native_theme_extra_params->button.indeterminate =
92 extra_params->button.indeterminate;
H A Dwebthemeengine_impl_default.cc98 native_theme_extra_params->button.indeterminate =
99 extra_params->button.indeterminate;
/external/chromium_org/mojo/services/html_viewer/
H A Dwebthemeengine_impl.cc98 native_theme_extra_params->button.indeterminate =
99 extra_params->button.indeterminate;
/external/chromium_org/ui/native_theme/
H A Dnative_theme.h101 bool indeterminate; // Whether the button state is indeterminate. member in struct:ui::NativeTheme::ButtonExtraParams
H A Dnative_theme_win.cc811 // Classic theme doesn't support indeterminate checkboxes. We draw
813 if (part_id == BP_CHECKBOX && extra.indeterminate) {
1039 (extra.indeterminate ? CBS_MIXEDNORMAL : CBS_UNCHECKEDNORMAL);
1044 (extra.indeterminate ? CBS_MIXEDDISABLED : CBS_UNCHECKEDDISABLED);
1049 (extra.indeterminate ? CBS_MIXEDHOT : CBS_UNCHECKEDHOT);
1056 (extra.indeterminate ? CBS_MIXEDPRESSED : CBS_UNCHECKEDPRESSED);
1435 // size of moving overlay of the indeterminate progress bar.
1464 // The glossy overlay for the indeterminate progress bar has a small pause
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
H A DSigninManager.java416 // We don't have progress update, so this takes an indeterminate amount of time.
417 boolean indeterminate = true;
424 indeterminate, cancelable);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.idl44 attribute boolean indeterminate;
H A DHTMLInputElement.h97 // 'indeterminate' is a state independent of the checked state that causes the control to draw in a way that hides the actual state.
98 bool indeterminate() const { return m_isIndeterminate; } function in class:blink::HTMLInputElement
/external/chromium_org/base/mac/
H A Dsdk_forward_declarations.h254 @property (readonly, getter=isIndeterminate) BOOL indeterminate; variable
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DThemeMac.mm172 bool indeterminate = (states & IndeterminateControlState);
175 if (oldIndeterminate != indeterminate || checked != oldChecked)
176 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTheme.cpp1131 extraParams.button.indeterminate = isIndeterminate(o);
1173 extraParams.button.indeterminate = isIndeterminate(o);
H A DRenderThemeChromiumDefault.cpp250 extraParams.button.indeterminate = isIndeterminate(o);
H A DRenderThemeChromiumMac.mm578 bool indeterminate = isIndeterminate(o);
581 if (oldIndeterminate != indeterminate) {
582 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/chromium_org/ui/views/controls/button/
H A Dlabel_button.cc370 params->button.indeterminate = false;
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_theme_engine.cc479 if (extraParams->button.indeterminate) {

Completed in 567 milliseconds

12