Home
last modified time | relevance | path

Searched refs:isRadioButton (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/html/
DRadioInputType.cpp96 …if (inputElement->isRadioButton() && inputElement->name() == element()->name() && inputElement->is… in handleKeydownEvent()
129 …if (focusedInput->isRadioButton() && focusedInput->form() == element()->form() && focusedInput->na… in isKeyboardFocusable()
179 && checkedRadioButton->isRadioButton() in didDispatchClick()
191 bool RadioInputType::isRadioButton() const in isRadioButton() function in WebCore::RadioInputType
DRadioInputType.h55 virtual bool isRadioButton() const;
DHTMLFormControlElement.h79 virtual bool isRadioButton() const { return false; } in isRadioButton() function
DInputType.h100 virtual bool isRadioButton() const;
DHTMLInputElement.h85 virtual bool isRadioButton() const;
DInputType.cpp570 bool InputType::isRadioButton() const in isRadioButton() function in WebCore::InputType
DHTMLInputElement.cpp1490 bool HTMLInputElement::isRadioButton() const in isRadioButton() function in WebCore::HTMLInputElement
1492 return m_inputType->isRadioButton(); in isRadioButton()
/external/webkit/Source/WebCore/dom/
DCheckedRadioButtons.cpp31 if (!element->isRadioButton()) in addButton()
83 ASSERT(element->isRadioButton()); in removeButton()
DInputElement.h46 virtual bool isRadioButton() const = 0;
/external/webkit/Source/WebCore/wml/
DWMLInputElement.h53 virtual bool isRadioButton() const { return false; } in isRadioButton() function
/external/webkit/Source/WebKit/chromium/src/
DWebSearchableFormData.cpp137 if (inputElement->isCheckbox() || inputElement->isRadioButton()) in IsInDefaultState()
/external/webkit/Source/WebCore/accessibility/
DAccessibilityObject.h285 virtual bool isRadioButton() const { return roleValue() == RadioButtonRole; } in isRadioButton() function
322 bool isCheckboxOrRadio() const { return isCheckbox() || isRadioButton(); } in isCheckboxOrRadio()
DAccessibilityRenderObject.cpp605 return input->isCheckbox() || input->isRadioButton(); in isNativeCheckboxOrRadio()
1559 … if (associateElement->isRadioButton() && associateElement->name() == input->name()) { in addRadioButtonGroupMembers()
3065 if (input->isRadioButton()) in determineAccessibilityRole()
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1633918 (WebCore::HTMLInputElement::isRadioButton): Ditto.
34020 (WebCore::InputType::isRadioButton): Added.
34071 (WebCore::RadioInputType::isRadioButton): Added.
DChangeLog-2006-05-1038397 (DOM::HTMLGenericFormElementImpl::isRadioButton): Added.
38398 (DOM::HTMLInputElementImpl::isRadioButton): Added.
DChangeLog-2010-12-0653136 isCheckbox and isRadioButton.
99697 (WebCore::AccessibilityObject::isRadioButton):
DChangeLog-2008-08-1076325 <rdar://problem/5561626> ASSERT(element->isRadioButton()) fires destroying form elements
DChangeLog-2009-06-1651825 (WebCore::WMLInputElement::isRadioButton):
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-168938 (WebCore::IsInDefaultState): Use isCheckbox and isRadioButton.