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

12345678

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRadioButtonGroupScope.h32 class HTMLInputElement;
41 void addButton(HTMLInputElement*);
42 void updateCheckedState(HTMLInputElement*);
43 void requiredAttributeChanged(HTMLInputElement*);
44 void removeButton(HTMLInputElement*);
45 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
46 bool isInRequiredGroup(HTMLInputElement*) const;
H A DBaseClickableWithKeyInputType.h41 static void handleKeydownEvent(HTMLInputElement&, KeyboardEvent*);
42 static void handleKeypressEvent(HTMLInputElement&, KeyboardEvent*);
44 static void accessKeyAction(HTMLInputElement&, bool sendMouseEvents);
47 BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { }
H A DButtonInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 ButtonInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
H A DRadioButtonGroupScope.cpp24 #include "core/html/HTMLInputElement.h"
35 HTMLInputElement* checkedButton() const { return m_checkedButton; }
36 void add(HTMLInputElement*);
37 void updateCheckedState(HTMLInputElement*);
38 void requiredAttributeChanged(HTMLInputElement*);
39 void remove(HTMLInputElement*);
40 bool contains(HTMLInputElement*) const;
48 void setCheckedButton(HTMLInputElement*);
50 WillBeHeapHashSet<RawPtrWillBeMember<HTMLInputElement> > m_members;
51 RawPtrWillBeMember<HTMLInputElement> m_checkedButto
[all...]
H A DButtonInputType.cpp39 PassRefPtrWillBeRawPtr<InputType> ButtonInputType::create(HTMLInputElement& element)
H A DResetInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 ResetInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
H A DTelephoneInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 TelephoneInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
H A DTextInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 TextInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
H A DURLInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 URLInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
H A DCheckboxInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 CheckboxInputType(HTMLInputElement& element) : BaseCheckableInputType(element) { }
H A DPasswordInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 PasswordInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
H A DSubmitInputType.h40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
43 SubmitInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
H A DBaseTextInputType.h42 BaseTextInputType(HTMLInputElement& element) : TextFieldInputType(element) { }
H A DTelephoneInputType.cpp39 PassRefPtrWillBeRawPtr<InputType> TelephoneInputType::create(HTMLInputElement& element)
H A DInputTypeView.h50 class HTMLInputElement;
65 RefPtrWillBeMember<HTMLInputElement> checkedRadioButton;
69 // HTMLInputElement. Do not expose instances of InputTypeView and classes
70 // derived from it to classes other than HTMLInputElement.
76 static PassRefPtrWillBeRawPtr<InputTypeView> create(HTMLInputElement&);
121 InputTypeView(HTMLInputElement& element) : m_element(&element) { }
122 HTMLInputElement& element() const { return *m_element; }
125 // Not a RefPtr because the HTMLInputElement object owns this InputTypeView
127 RawPtrWillBeMember<HTMLInputElement> m_element;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputElement.cpp38 #include "core/html/HTMLInputElement.h"
52 return constUnwrap<HTMLInputElement>()->isTextField();
57 return constUnwrap<HTMLInputElement>()->isText();
62 return constUnwrap<HTMLInputElement>()->isPasswordField();
67 return constUnwrap<HTMLInputElement>()->isImageButton();
72 return constUnwrap<HTMLInputElement>()->isRadioButton();
77 return constUnwrap<HTMLInputElement>()->isCheckbox();
82 return constUnwrap<HTMLInputElement>()->maxLength();
87 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
92 return constUnwrap<HTMLInputElement>()
[all...]
H A DWebFormControlElement.cpp36 #include "core/html/HTMLInputElement.h"
89 return constUnwrap<HTMLInputElement>()->shouldAutocomplete();
98 unwrap<HTMLInputElement>()->setValue(value, sendEvents ? DispatchInputAndChangeEvent : DispatchNoEvent);
108 return constUnwrap<HTMLInputElement>()->value();
119 unwrap<HTMLInputElement>()->setSuggestedValue(value);
129 return constUnwrap<HTMLInputElement>()->suggestedValue();
140 return constUnwrap<HTMLInputElement>()->innerEditorValue();
149 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
157 return constUnwrap<HTMLInputElement>()->selectionStart();
166 return constUnwrap<HTMLInputElement>()
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.h39 class HTMLInputElement;
44 static EntryHeapVector webkitEntries(ExecutionContext*, HTMLInputElement&);
H A DHTMLInputElementFileSystem.idl33 ] partial interface HTMLInputElement {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp30 #include "core/html/HTMLInputElement.h"
87 static PassOwnPtrWillBeRawPtr<ListAttributeTargetObserver> create(const AtomicString& id, HTMLInputElement*);
92 ListAttributeTargetObserver(const AtomicString& id, HTMLInputElement*);
94 RawPtrWillBeMember<HTMLInputElement> m_element;
101 const int HTMLInputElement::maximumLength = 524288;
105 HTMLInputElement::HTMLInputElement(Document& document, HTMLFormElement* form, bool createdByParser) function in class:WebCore::HTMLInputElement
132 PassRefPtrWillBeRawPtr<HTMLInputElement> HTMLInputElement::create(Document& document, HTMLFormElement* form, bool createdByParser)
134 RefPtrWillBeRawPtr<HTMLInputElement> inputElemen
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderSearchField.h30 class HTMLInputElement;
34 RenderSearchField(HTMLInputElement*);
H A DRenderFileUploadControl.h28 class HTMLInputElement;
36 RenderFileUploadControl(HTMLInputElement*);
56 HTMLInputElement* uploadButton() const;
H A DRenderSlider.h28 class HTMLInputElement;
35 explicit RenderSlider(HTMLInputElement*);
/external/chromium_org/chrome/browser/resources/options/
H A Dcontent_settings_ui.js14 __proto__: HTMLInputElement.prototype,
44 __proto__: HTMLInputElement.prototype,
/external/chromium_org/third_party/WebKit/public/web/
H A DWebInputElement.h37 namespace WebCore { class HTMLInputElement; }
90 WebInputElement(const PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>&);
91 WebInputElement& operator=(const PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>&);
92 operator PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>() const;

Completed in 1877 milliseconds

12345678