Searched refs:HTMLInputElement (Results 1 - 25 of 150) sorted by relevance

123456

/external/webkit/Source/WebKit/chromium/src/
H A DWebInputElement.cpp34 #include "HTMLInputElement.h"
45 return constUnwrap<HTMLInputElement>()->isTextField();
50 return constUnwrap<HTMLInputElement>()->isText();
55 return constUnwrap<HTMLInputElement>()->isPasswordField();
60 return constUnwrap<HTMLInputElement>()->isImageButton();
65 return constUnwrap<HTMLInputElement>()->autoComplete();
70 return constUnwrap<HTMLInputElement>()->maxLength();
75 return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
80 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
85 return constUnwrap<HTMLInputElement>()
[all...]
H A DWebPasswordFormUtils.h37 class HTMLInputElement;
46 WebCore::HTMLInputElement* userName;
47 Vector<WebCore::HTMLInputElement*> passwords;
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLInputElementCustom.cpp29 #include "HTMLInputElement.h"
38 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
47 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
56 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
65 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
74 HTMLInputElement* inpu
[all...]
/external/webkit/Source/WebCore/dom/
H A DCheckedRadioButtons.h31 class HTMLInputElement;
37 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
40 typedef HashMap<AtomicStringImpl*, HTMLInputElement*> NameToInputMap;
/external/webkit/Source/WebCore/html/
H A DButtonInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 ButtonInputType(HTMLInputElement* element) : BaseButtonInputType(element) { }
H A DColorInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 ColorInputType(HTMLInputElement* element) : TextFieldInputType(element) { }
H A DEmailInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 EmailInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
H A DHTMLIsIndexElement.idl22 interface HTMLIsIndexElement : HTMLInputElement {
H A DResetInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 ResetInputType(HTMLInputElement* element) : BaseButtonInputType(element) { }
H A DSearchInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 SearchInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
H A DTelephoneInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 TelephoneInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
H A DTextInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 TextInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
H A DURLInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 URLInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
H A DValidityState.cpp27 #include "HTMLInputElement.h"
55 return static_cast<HTMLInputElement*>(element)->valueMissingText();
60 return static_cast<HTMLInputElement*>(element)->typeMismatchText();
78 return validationMessageRangeUnderflowText(static_cast<HTMLInputElement*>(element)->minimumString());
85 return validationMessageRangeOverflowText(static_cast<HTMLInputElement*>(element)->maximumString());
92 HTMLInputElement* input = static_cast<HTMLInputElement*>(element);
113 HTMLInputElement* input = static_cast<HTMLInputElement*>(element);
135 return static_cast<HTMLInputElement*>(elemen
[all...]
H A DHTMLInputElement.cpp28 #include "HTMLInputElement.h"
73 HTMLInputElement::HTMLInputElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form, bool createdByParser) function in class:WebCore::HTMLInputElement
90 PassRefPtr<HTMLInputElement> HTMLInputElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form, bool createdByParser)
92 return adoptRef(new HTMLInputElement(tagName, document, form, createdByParser));
95 HTMLInputElement::~HTMLInputElement()
102 // Need to remove this from the form while it is still an HTMLInputElement,
107 const AtomicString& HTMLInputElement
[all...]
H A DStepRange.h29 class HTMLInputElement;
39 explicit StepRange(const HTMLInputElement*);
64 double valueFromElement(HTMLInputElement*, bool* wasClamped = 0);
H A DBaseTextInputType.h42 BaseTextInputType(HTMLInputElement* element) : TextFieldInputType(element) { }
H A DTextInputType.cpp38 PassOwnPtr<InputType> TextInputType::create(HTMLInputElement* element)
H A DCheckboxInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 CheckboxInputType(HTMLInputElement* element) : BaseCheckableInputType(element) { }
H A DDateInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 DateInputType(HTMLInputElement* element) : BaseDateAndTimeInputType(element) { }
H A DHiddenInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 HiddenInputType(HTMLInputElement* element) : InputType(element) { }
H A DIsIndexInputType.h41 static PassOwnPtr<InputType> create(HTMLInputElement*);
44 IsIndexInputType(HTMLInputElement* element) : TextFieldInputType(element) { };
H A DPasswordInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 PasswordInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageFormClient.h37 class HTMLInputElement;
50 void textFieldDidBeginEditing(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
51 void textFieldDidEndEditing(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
52 void textDidChangeInTextField(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
54 bool shouldPerformActionInTextField(WebPage*, WebCore::HTMLInputElement*, WKInputFieldActionType, WebFrame*);
/external/webkit/Source/WebCore/rendering/
H A DShadowElement.cpp38 : ShadowElement<HTMLInputElement>(inputTag, shadowParent, 0, false)

Completed in 726 milliseconds

123456