Searched refs:indeterminate (Results 1 – 18 of 18) sorted by relevance
74 bool HTMLDataGridCellElement::indeterminate() const in indeterminate() function in WebCore::HTMLDataGridCellElement79 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate) in setIndeterminate() argument81 setAttribute(indeterminateAttr, indeterminate ? "" : 0); in setIndeterminate()
36 attribute boolean indeterminate; // If the checked state is indeterminate.
51 bool indeterminate() const;
97 virtual bool isIndeterminate() const { return indeterminate(); } in isIndeterminate()134 bool indeterminate() const { return m_indeterminate; } in indeterminate() function
107 indeterminate
83 attribute boolean indeterminate;
1451 if (inputType() != CHECKBOX || indeterminate() == _indeterminate) in setIndeterminate()1953 if (indeterminate()) { in preDispatchEventHandler()
101 DEFINE_STATIC_LOCAL(AtomicString, indeterminate, ("indeterminate")); in extractPseudoType()238 else if (m_value == indeterminate) in extractPseudoType()
102 indeterminate
119 bool indeterminate = (states & IndeterminateState);122 if (oldIndeterminate != indeterminate || checked != oldChecked)123 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
265 bool indeterminate = (states & IndeterminateState);268 if (oldIndeterminate != indeterminate || checked != oldChecked)269 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
610 bool indeterminate = isIndeterminate(o);613 if (oldIndeterminate != indeterminate) {614 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
539 bool indeterminate = isIndeterminate(o);542 if (oldIndeterminate != indeterminate) {543 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
617 @property BOOL indeterminate AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
8280 style. These include enabled, checked and indeterminate.8399 Add support for the indeterminate boolean for placing checkboxes8402 Along with this feature, add support for the CSS3 :indeterminate8408 Specifically "indeterminate" has no effect on form submission, it does not8415 fast/forms/indeterminate.html8435 (DOM::HTMLInputElementImpl::indeterminate):
21979 out of the map is indeterminate, we got unpredictable results.
30018 a tri-state checkbox in the indeterminate state.
95941 (WebCore::HTMLDataGridCellElement::indeterminate):