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

1 2

  /external/chromium/chrome/browser/ui/cocoa/
dock_icon.h 23 // Indicates whether the progress indicator should be in an indeterminate state
25 - (void)setIndeterminate:(BOOL)indeterminate;
  /external/webkit/Source/WebCore/html/
HTMLDataGridCellElement.idl 36 attribute boolean indeterminate; // If the checked state is indeterminate.
HTMLDataGridCellElement.cpp 78 bool HTMLDataGridCellElement::indeterminate() const function in class:WebCore::HTMLDataGridCellElement
83 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate)
85 setAttribute(indeterminateAttr, indeterminate ? "" : 0);
CheckboxInputType.cpp 78 state->indeterminate = element()->indeterminate();
80 if (state->indeterminate)
91 element()->setIndeterminate(state.indeterminate);
HTMLDataGridCellElement.h 48 bool indeterminate() const;
RadioInputType.cpp 162 state->indeterminate = element()->indeterminate();
165 if (element()->indeterminate())
184 element()->setIndeterminate(state.indeterminate);
HTMLInputElement.h 113 // 'indeterminate' is a state independent of the checked state that causes the control to draw in a way that hides the actual state.
114 bool indeterminate() const { return m_isIndeterminate; } function in class:WebCore::HTMLInputElement
226 virtual bool isIndeterminate() const { return indeterminate(); }
HTMLInputElement.idl 90 attribute boolean indeterminate;
InputType.h 67 bool indeterminate; member in struct:WebCore::ClickHandlingState
  /external/chromium/webkit/glue/
webthemeengine_impl_win.cc 41 extra->indeterminate = false;
47 extra->indeterminate = false;
53 extra->indeterminate = false;
59 extra->indeterminate = false;
65 extra->indeterminate = false;
71 extra->indeterminate = false;
82 extra->indeterminate = false;
88 extra->indeterminate = false;
94 extra->indeterminate = false;
100 extra->indeterminate = false
    [all...]
webthemeengine_impl_linux.cc 99 native_theme_extra_params->button.indeterminate =
100 extra_params->button.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;
Notification.java 752 public Builder setProgress(int max, int progress, boolean indeterminate) {
755 mProgressIndeterminate = indeterminate;
    [all...]
  /cts/tests/src/android/app/cts/
AppStubActivity.java 112 public boolean setProBarIndeterminate(boolean indeterminate){
113 mIndterminate = indeterminate;
114 super.setProgressBarIndeterminate(indeterminate);
  /external/webkit/Source/WebKit/chromium/public/linux/
WebThemeEngine.h 89 bool indeterminate; // Whether the button state is indeterminate. member in struct:WebKit::WebThemeEngine::ButtonExtraParams
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 68 * A progress bar can also be made indeterminate. In indeterminate mode, the
70 * applications when the length of the task is unknown. The indeterminate progress bar can be either
113 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a
396 * <li>indeterminate = false</li>
415 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
417 * @return true if the progress bar is in indeterminate mode
425 * <p>Change the indeterminate mode for this progress bar. In indeterminate
429 * If this progress bar's style only supports indeterminate mode (such as the circula
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 68 * A progress bar can also be made indeterminate. In indeterminate mode, the
70 * applications when the length of the task is unknown. The indeterminate progress bar can be either
113 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a
396 * <li>indeterminate = false</li>
415 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
417 * @return true if the progress bar is in indeterminate mode
425 * <p>Change the indeterminate mode for this progress bar. In indeterminate
429 * If this progress bar's style only supports indeterminate mode (such as the circula
    [all...]
RemoteViews.java     [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 272 // Checked and Indeterminate
274 bool indeterminate = (states & IndeterminateState);
277 if (oldIndeterminate != indeterminate || checked != oldChecked)
278 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
PlatformBridge.h 312 bool indeterminate; // Whether the button state is indeterminate. member in struct:WebCore::PlatformBridge::ButtonExtraParams
  /external/webkit/Source/WebCore/platform/mac/
ThemeMac.mm 159 // Checked and Indeterminate
161 bool indeterminate = (states & IndeterminateState);
164 if (oldIndeterminate != indeterminate || checked != oldChecked)
165 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk2.cpp 167 bool indeterminate = theme->isIndeterminate(renderObject); local
168 gtk_toggle_button_set_inconsistent(GTK_TOGGLE_BUTTON(widget), indeterminate); local
171 if (indeterminate) // This originates from the Mozilla code.
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumLinux.cpp 191 extraParams.button.indeterminate = isIndeterminate(o);
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 273 DEFINE_STATIC_LOCAL(AtomicString, indeterminate, ("indeterminate"));
365 nameToPseudoType->set(indeterminate.impl(), CSSSelector::PseudoIndeterminate);
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 833 webThemeExtraParams->button.indeterminate = extraParams->button.indeterminate;
    [all...]

Completed in 2418 milliseconds

1 2