Home
last modified time | relevance | path

Searched refs:isCheckbox (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebInputElement.cpp75 bool WebInputElement::isCheckbox() const in isCheckbox() function in blink::WebInputElement
77 return constUnwrap<HTMLInputElement>()->isCheckbox(); in isCheckbox()
DWebSearchableFormData.cpp141 if (inputElement->isCheckbox() || inputElement->isRadioButton()) in IsInDefaultState()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DCheckboxInputType.h50 virtual bool isCheckbox() const OVERRIDE;
DCheckboxInputType.cpp100 bool CheckboxInputType::isCheckbox() const in isCheckbox() function in WebCore::CheckboxInputType
DInputType.h80 virtual bool isCheckbox() const;
DInputType.cpp662 bool InputType::isCheckbox() const in isCheckbox() function in WebCore::InputType
/external/chromium_org/third_party/WebKit/public/web/
DWebInputElement.h71 BLINK_EXPORT bool isCheckbox() const;
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXObject.h313 bool isCheckbox() const { return roleValue() == CheckBoxRole; } in isCheckbox() function
314 bool isCheckboxOrRadio() const { return isCheckbox() || isRadioButton(); } in isCheckboxOrRadio()
DAXNodeObject.cpp193 if (input->isCheckbox()) in determineAccessibilityRole()
553 return input->isCheckbox() || input->isRadioButton(); in isNativeCheckboxOrRadio()
DAXRenderObject.cpp320 if (input->isCheckbox()) in determineAccessibilityRole()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.h95 bool isCheckbox() const;
DHTMLInputElement.cpp1570 bool HTMLInputElement::isCheckbox() const in isCheckbox() function in WebCore::HTMLInputElement
1572 return m_inputType->isCheckbox(); in isCheckbox()
/external/chromium_org/components/autofill/content/renderer/
Dform_autofill_util.cc658 return element->isCheckbox() || element->isRadioButton(); in IsCheckableElement()