Searched defs:HTMLInputElement (Results 1 - 3 of 3) sorted by path

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp30 #include "core/html/HTMLInputElement.h"
91 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const AtomicString& id, HTMLInputElement*);
96 ListAttributeTargetObserver(const AtomicString& id, HTMLInputElement*);
98 RawPtrWillBeMember<HTMLInputElement> m_element;
105 const int HTMLInputElement::maximumLength = 524288;
109 HTMLInputElement::HTMLInputElement(Document& document, HTMLFormElement* form, bool createdByParser) function in class:blink::HTMLInputElement
135 PassRefPtrWillBeRawPtr<HTMLInputElement> HTMLInputElement::create(Document& document, HTMLFormElement* form, bool createdByParser)
137 RefPtrWillBeRawPtr<HTMLInputElement> inputElemen
[all...]
H A DHTMLInputElement.h48 class HTMLInputElement : public HTMLTextFormControlElement { class in namespace:blink
51 static PassRefPtrWillBeRawPtr<HTMLInputElement> create(Document&, HTMLFormElement*, bool createdByParser);
52 virtual ~HTMLInputElement();
82 // Implementations of HTMLInputElement::stepUp() and stepDown().
201 HTMLInputElement* checkedRadioButtonForGroup();
254 HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputElement.cpp40 #include "core/html/HTMLInputElement.h"
52 return constUnwrap<HTMLInputElement>()->isTextField();
57 return constUnwrap<HTMLInputElement>()->isTextField() && constUnwrap<HTMLInputElement>()->type() != InputTypeNames::number;
62 return constUnwrap<HTMLInputElement>()->type() == InputTypeNames::email;
67 return constUnwrap<HTMLInputElement>()->type() == InputTypeNames::password;
72 return constUnwrap<HTMLInputElement>()->type() == InputTypeNames::image;
77 return constUnwrap<HTMLInputElement>()->type() == InputTypeNames::radio;
82 return constUnwrap<HTMLInputElement>()->type() == InputTypeNames::checkbox;
87 return constUnwrap<HTMLInputElement>()
[all...]

Completed in 407 milliseconds