Home
last modified time | relevance | path

Searched refs:HTMLInputElement (Results 1 – 25 of 177) sorted by relevance

12345678

/external/webkit/Source/WebKit/chromium/src/
DWebInputElement.cpp45 return constUnwrap<HTMLInputElement>()->isTextField(); in isTextField()
50 return constUnwrap<HTMLInputElement>()->isText(); in isText()
55 return constUnwrap<HTMLInputElement>()->isPasswordField(); in isPasswordField()
60 return constUnwrap<HTMLInputElement>()->isImageButton(); in isImageButton()
65 return constUnwrap<HTMLInputElement>()->autoComplete(); in autoComplete()
70 return constUnwrap<HTMLInputElement>()->maxLength(); in maxLength()
75 return constUnwrap<HTMLInputElement>()->isActivatedSubmit(); in isActivatedSubmit()
80 unwrap<HTMLInputElement>()->setActivatedSubmit(activated); in setActivatedSubmit()
85 return constUnwrap<HTMLInputElement>()->size(); in size()
90 unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent); in setValue()
[all …]
DWebPasswordFormData.cpp55 HTMLInputElement** password, in locateSpecificPasswords()
56 HTMLInputElement** oldPassword) in locateSpecificPasswords()
115 HTMLInputElement* userName, in assemblePasswordFormResult()
116 HTMLInputElement* oldPassword, in assemblePasswordFormResult()
117 HTMLInputElement* password, in assemblePasswordFormResult()
173 HTMLInputElement* password = 0; in WebPasswordFormData()
174 HTMLInputElement* oldPassword = 0; in WebPasswordFormData()
DWebPasswordFormUtils.h37 class HTMLInputElement; variable
46 WebCore::HTMLInputElement* userName;
47 Vector<WebCore::HTMLInputElement*> passwords;
DWebSearchableFormData.cpp136 const HTMLInputElement* inputElement = static_cast<const HTMLInputElement*>(formElement); in IsInDefaultState()
160 HTMLInputElement* textElement = 0; in HasSuitableTextElement()
174 const HTMLInputElement* input = static_cast<const HTMLInputElement*>(formElement); in HasSuitableTextElement()
200 textElement = static_cast<HTMLInputElement*>(formElement); in HasSuitableTextElement()
DDOMUtilitiesPrivate.cpp60 HTMLInputElement* toHTMLInputElement(Node* node) in toHTMLInputElement()
62 return toHTMLElement<HTMLInputElement>(node, HTMLNames::inputTag); in toHTMLInputElement()
91 const HTMLInputElement* input = in elementHasLegalLinkAttribute()
92 static_cast<const HTMLInputElement*>(element); in elementHasLegalLinkAttribute()
DAutoFillPopupMenuClient.h37 class HTMLInputElement; variable
104 void initialize(WebCore::HTMLInputElement*,
123 WebCore::HTMLInputElement* getTextField() const { return m_textField.get(); } in getTextField()
143 RefPtr<WebCore::HTMLInputElement> m_textField;
/external/webkit/Source/WebCore/html/
DHTMLInputElement.cpp73 HTMLInputElement::HTMLInputElement(const QualifiedName& tagName, Document* document, HTMLFormElemen… in HTMLInputElement() function in WebCore::HTMLInputElement
90 PassRefPtr<HTMLInputElement> HTMLInputElement::create(const QualifiedName& tagName, Document* docum… in create()
92 return adoptRef(new HTMLInputElement(tagName, document, form, createdByParser)); in create()
95 HTMLInputElement::~HTMLInputElement() in ~HTMLInputElement()
107 const AtomicString& HTMLInputElement::formControlName() const in formControlName()
112 bool HTMLInputElement::autoComplete() const in autoComplete()
119 void HTMLInputElement::updateCheckedRadioButtons() in updateCheckedRadioButtons()
157 bool HTMLInputElement::lastChangeWasUserEdit() const in lastChangeWasUserEdit()
168 bool HTMLInputElement::isValidValue(const String& value) const in isValidValue()
183 bool HTMLInputElement::typeMismatch() const in typeMismatch()
[all …]
DValidityState.cpp55 return static_cast<HTMLInputElement*>(element)->valueMissingText(); in validationMessage()
60 return static_cast<HTMLInputElement*>(element)->typeMismatchText(); in validationMessage()
78 …return validationMessageRangeUnderflowText(static_cast<HTMLInputElement*>(element)->minimumString(… in validationMessage()
85 …return validationMessageRangeOverflowText(static_cast<HTMLInputElement*>(element)->maximumString()… in validationMessage()
92 HTMLInputElement* input = static_cast<HTMLInputElement*>(element); in validationMessage()
113 HTMLInputElement* input = static_cast<HTMLInputElement*>(element); in valueMissing()
135 return static_cast<HTMLInputElement*>(element)->typeMismatch(); in typeMismatch()
146 HTMLInputElement* input = static_cast<HTMLInputElement*>(element); in patternMismatch()
157 HTMLInputElement* input = static_cast<HTMLInputElement*>(element); in tooLong()
175 HTMLInputElement* input = static_cast<HTMLInputElement*>(element); in rangeUnderflow()
[all …]
DRadioInputType.cpp39 PassOwnPtr<InputType> RadioInputType::create(HTMLInputElement* element) in create()
93 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(node); in handleKeydownEvent()
128 HTMLInputElement* focusedInput = static_cast<HTMLInputElement*>(currentFocusedNode); in isKeyboardFocusable()
177 HTMLInputElement* checkedRadioButton = state.checkedRadioButton.get(); in didDispatchClick()
DInputType.h49 class HTMLInputElement; variable
68 RefPtr<HTMLInputElement> checkedRadioButton;
77 static PassOwnPtr<InputType> create(HTMLInputElement*, const String&);
78 static PassOwnPtr<InputType> createText(HTMLInputElement*);
244 InputType(HTMLInputElement* element) : m_element(element) { } in InputType()
245 HTMLInputElement* element() const { return m_element; } in element()
252 HTMLInputElement* m_element;
DStepRange.h29 class HTMLInputElement; variable
39 explicit StepRange(const HTMLInputElement*);
64 double valueFromElement(HTMLInputElement*, bool* wasClamped = 0);
DTextInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 TextInputType(HTMLInputElement* element) : BaseTextInputType(element) { } in TextInputType()
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLInputElementCustom.cpp38 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); in selectionStart()
47 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); in setSelectionStart()
56 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); in selectionEnd()
65 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); in setSelectionEnd()
74 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); in setSelectionRange()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundlePageFormClient.h37 class HTMLInputElement; variable
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, …
DInjectedBundlePageFormClient.cpp41 void InjectedBundlePageFormClient::textFieldDidBeginEditing(WebPage* page, HTMLInputElement* inputE… in textFieldDidBeginEditing()
50 void InjectedBundlePageFormClient::textFieldDidEndEditing(WebPage* page, HTMLInputElement* inputEle… in textFieldDidEndEditing()
59 void InjectedBundlePageFormClient::textDidChangeInTextField(WebPage* page, HTMLInputElement* inputE… in textDidChangeInTextField()
77 bool InjectedBundlePageFormClient::shouldPerformActionInTextField(WebPage* page, HTMLInputElement* … in shouldPerformActionInTextField()
/external/webkit/Source/WebKit/win/
DDOMHTMLClasses.cpp997 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in form()
1079 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in disabled()
1123 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in readOnly()
1188 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in setType()
1212 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in value()
1224 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in setValue()
1234 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in setValueForUser()
1242 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in select()
1257 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in setSelectionStart()
1266 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_element); in selectionStart()
[all …]
/external/webkit/LayoutTests/fast/xpath/
Did-simple-expected.txt7 id('nested1')/div[1]/input[2] PASSED: [object HTMLInputElement]
8 id('nested1')/div[1]//input[2] PASSED: [object HTMLInputElement]
9 id('nested1')//div[1]/input[2] PASSED: [object HTMLInputElement]
10 id('nested1')//div[1]//input[2] PASSED: [object HTMLInputElement]
/external/webkit/Source/WebCore/rendering/
DRenderFileUploadControl.cpp56 RenderFileUploadControl::RenderFileUploadControl(HTMLInputElement* input) in RenderFileUploadControl()
86 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(node()); in valueChanged()
102 HTMLInputElement* input = static_cast<HTMLInputElement*>(node()); in allowsMultipleFiles()
109 HTMLInputElement* input = static_cast<HTMLInputElement*>(node()); in allowsDirectoryUpload()
122 return static_cast<HTMLInputElement*>(node())->accept(); in acceptTypes()
128 return static_cast<HTMLInputElement*>(node())->capture(); in capture()
160 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(node()); in updateFromElement()
DRenderFileUploadControl.h30 class HTMLInputElement; variable
38 RenderFileUploadControl(HTMLInputElement*);
81 RefPtr<HTMLInputElement> m_button;
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLInputElementCustom.cpp45 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); in selectionStartAccessorGetter()
58 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); in selectionStartAccessorSetter()
71 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); in selectionEndAccessorGetter()
84 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); in selectionEndAccessorSetter()
98 HTMLInputElement* imp = V8HTMLInputElement::toNative(holder); in setSelectionRangeCallback()
/external/webkit/Source/WebCore/dom/
DCheckedRadioButtons.cpp38 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(element); in addButton()
51 HTMLInputElement* oldCheckedButton = result.first->second; in addButton()
59 HTMLInputElement* CheckedRadioButtons::checkedButtonForGroup(const AtomicString& name) const in checkedButtonForGroup()
DCheckedRadioButtons.h31 class HTMLInputElement; variable
37 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const;
40 typedef HashMap<AtomicStringImpl*, HTMLInputElement*> NameToInputMap;
/external/webkit/Source/WebCore/html/shadow/
DTextControlInnerElements.cpp152 HTMLInputElement* input = static_cast<HTMLInputElement*>(shadowAncestorNode()); in defaultEventHandler()
194 RefPtr<HTMLInputElement> input(static_cast<HTMLInputElement*>(shadowAncestorNode())); in defaultEventHandler()
268 RefPtr<HTMLInputElement> input(static_cast<HTMLInputElement*>(shadowAncestorNode())); in defaultEventHandler()
335 HTMLInputElement* input = static_cast<HTMLInputElement*>(shadowAncestorNode()); in repeatingTimerFired()
394 RefPtr<HTMLInputElement> input(static_cast<HTMLInputElement*>(shadowAncestorNode())); in defaultEventHandler()
479 RefPtr<HTMLInputElement> input(static_cast<HTMLInputElement*>(shadowAncestorNode())); in setRecognitionResult()
/external/webkit/Source/WebKit/chromium/public/
DWebInputElement.h37 namespace WebCore { class HTMLInputElement; } variable
85 WebInputElement(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
86 WebInputElement& operator=(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
87 operator WTF::PassRefPtr<WebCore::HTMLInputElement>() const;
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
DInjectedBundleNodeHandle.cpp125 static_cast<HTMLInputElement*>(m_node.get())->setValueForUser(value); in setHTMLInputElementValueForUser()
133 return static_cast<HTMLInputElement*>(m_node.get())->isAutofilled(); in isHTMLInputElementAutofilled()
141 static_cast<HTMLInputElement*>(m_node.get())->setAutofilled(filled); in setHTMLInputElementAutofilled()
149 return static_cast<HTMLInputElement*>(m_node.get())->lastChangeWasUserEdit(); in htmlInputElementLastChangeWasUserEdit()

12345678