/external/webkit/Source/WebKit/chromium/src/ |
D | WebInputElement.cpp | 45 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 …]
|
D | WebPasswordFormData.cpp | 55 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()
|
D | WebPasswordFormUtils.h | 37 class HTMLInputElement; variable 46 WebCore::HTMLInputElement* userName; 47 Vector<WebCore::HTMLInputElement*> passwords;
|
D | WebSearchableFormData.cpp | 136 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()
|
D | DOMUtilitiesPrivate.cpp | 60 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()
|
D | AutoFillPopupMenuClient.h | 37 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/ |
D | HTMLInputElement.cpp | 73 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 …]
|
D | ValidityState.cpp | 55 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 …]
|
D | RadioInputType.cpp | 39 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()
|
D | InputType.h | 49 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;
|
D | StepRange.h | 29 class HTMLInputElement; variable 39 explicit StepRange(const HTMLInputElement*); 64 double valueFromElement(HTMLInputElement*, bool* wasClamped = 0);
|
D | TextInputType.h | 40 static PassOwnPtr<InputType> create(HTMLInputElement*); 43 TextInputType(HTMLInputElement* element) : BaseTextInputType(element) { } in TextInputType()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSHTMLInputElementCustom.cpp | 38 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/ |
D | InjectedBundlePageFormClient.h | 37 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, …
|
D | InjectedBundlePageFormClient.cpp | 41 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/ |
D | DOMHTMLClasses.cpp | 997 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/ |
D | id-simple-expected.txt | 7 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/ |
D | RenderFileUploadControl.cpp | 56 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()
|
D | RenderFileUploadControl.h | 30 class HTMLInputElement; variable 38 RenderFileUploadControl(HTMLInputElement*); 81 RefPtr<HTMLInputElement> m_button;
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8HTMLInputElementCustom.cpp | 45 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/ |
D | CheckedRadioButtons.cpp | 38 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()
|
D | CheckedRadioButtons.h | 31 class HTMLInputElement; variable 37 HTMLInputElement* checkedButtonForGroup(const AtomicString& groupName) const; 40 typedef HashMap<AtomicStringImpl*, HTMLInputElement*> NameToInputMap;
|
/external/webkit/Source/WebCore/html/shadow/ |
D | TextControlInnerElements.cpp | 152 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/ |
D | WebInputElement.h | 37 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/ |
D | InjectedBundleNodeHandle.cpp | 125 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()
|