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

/external/chromium/chrome/browser/ui/cocoa/
H A Ddock_icon.h23 // Indicates whether the progress indicator should be in an indeterminate state
25 - (void)setIndeterminate:(BOOL)indeterminate;
/external/webkit/Source/WebCore/html/
H A DHTMLDataGridCellElement.idl36 attribute boolean indeterminate; // If the checked state is indeterminate.
H A DHTMLDataGridCellElement.cpp78 bool HTMLDataGridCellElement::indeterminate() const function in class:WebCore::HTMLDataGridCellElement
83 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate) argument
85 setAttribute(indeterminateAttr, indeterminate ? "" : 0);
H A DCheckboxInputType.cpp78 state->indeterminate = element()->indeterminate();
80 if (state->indeterminate)
91 element()->setIndeterminate(state.indeterminate);
H A DHTMLDataGridCellElement.h48 bool indeterminate() const;
H A DRadioInputType.cpp162 state->indeterminate = element()->indeterminate();
165 if (element()->indeterminate())
184 element()->setIndeterminate(state.indeterminate);
H A DHTMLInputElement.h113 // '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
230 virtual bool isIndeterminate() const { return indeterminate(); }
H A DHTMLInputElement.idl90 attribute boolean indeterminate;
H A DInputType.h67 bool indeterminate; member in struct:WebCore::ClickHandlingState
H A DHTMLInputElement.cpp810 if (!m_inputType->isCheckable() || indeterminate() == newValue)
/external/chromium/webkit/glue/
H A Dwebthemeengine_impl_win.cc41 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
[all...]
H A Dwebthemeengine_impl_linux.cc99 native_theme_extra_params->button.indeterminate =
100 extra_params->button.indeterminate;
/external/webkit/Source/WebKit/chromium/public/linux/
H A DWebThemeEngine.h89 bool indeterminate; // Whether the button state is indeterminate. member in struct:WebKit::WebThemeEngine::ButtonExtraParams
/external/webkit/Source/WebCore/platform/chromium/
H A DThemeChromiumMac.mm274 bool indeterminate = (states & IndeterminateState);
277 if (oldIndeterminate != indeterminate || checked != oldChecked)
278 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
H A DPlatformBridge.h312 bool indeterminate; // Whether the button state is indeterminate. member in struct:WebCore::PlatformBridge::ButtonExtraParams
/external/webkit/Source/WebCore/platform/mac/
H A DThemeMac.mm161 bool indeterminate = (states & IndeterminateState);
164 if (oldIndeterminate != indeterminate || checked != oldChecked)
165 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk2.cpp167 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.
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeChromiumLinux.cpp191 extraParams.button.indeterminate = isIndeterminate(o);
H A DRenderThemeMac.mm575 bool indeterminate = isIndeterminate(o);
578 if (oldIndeterminate != indeterminate) {
579 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/webkit/Source/WebCore/css/
H A DCSSSelector.cpp273 DEFINE_STATIC_LOCAL(AtomicString, indeterminate, ("indeterminate"));
365 nameToPseudoType->set(indeterminate.impl(), CSSSelector::PseudoIndeterminate);
/external/webkit/Source/WebKit/chromium/src/
H A DPlatformBridge.cpp833 webThemeExtraParams->button.indeterminate = extraParams->button.indeterminate;
/external/webkit/Source/WebCore/inspector/front-end/
H A DBreakpointsSidebarPane.js558 categoryItem.checkbox.indeterminate = hasEnabled && hasDisabled;
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h623 @property BOOL indeterminate AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;

Completed in 2982 milliseconds