/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLInputElement.cpp | 87 …sOwnPtrWillBeRawPtr<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) in HTMLInputElement() function in WebCore::HTMLInputElement 132 PassRefPtrWillBeRawPtr<HTMLInputElement> HTMLInputElement::create(Document& document, HTMLFormEleme… in create() 134 …RefPtrWillBeRawPtr<HTMLInputElement> inputElement = adoptRefWillBeNoop(new HTMLInputElement(docume… in create() 139 void HTMLInputElement::trace(Visitor* visitor) in trace() 148 HTMLImageLoader* HTMLInputElement::imageLoader() in imageLoader() 155 void HTMLInputElement::didAddUserAgentShadowRoot(ShadowRoot&) in didAddUserAgentShadowRoot() [all …]
|
D | RadioNodeList.cpp | 55 static inline HTMLInputElement* toRadioButtonInputElement(Element& element) in toRadioButtonInputElement() 59 HTMLInputElement& inputElement = toHTMLInputElement(element); in toRadioButtonInputElement() 71 const HTMLInputElement* inputElement = toRadioButtonInputElement(*item(i)); in value() 85 HTMLInputElement* inputElement = toRadioButtonInputElement(*item(i)); in setValue()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebInputElement.cpp | 52 return constUnwrap<HTMLInputElement>()->isTextField(); in isTextField() 57 return constUnwrap<HTMLInputElement>()->isText(); in isText() 62 return constUnwrap<HTMLInputElement>()->isPasswordField(); in isPasswordField() 67 return constUnwrap<HTMLInputElement>()->isImageButton(); in isImageButton() 72 return constUnwrap<HTMLInputElement>()->isRadioButton(); in isRadioButton() 77 return constUnwrap<HTMLInputElement>()->isCheckbox(); in isCheckbox() 82 return constUnwrap<HTMLInputElement>()->maxLength(); in maxLength() 87 unwrap<HTMLInputElement>()->setActivatedSubmit(activated); in setActivatedSubmit() 92 return constUnwrap<HTMLInputElement>()->size(); in size() 97 unwrap<HTMLInputElement>()->setEditingValue(value); in setEditingValue() [all …]
|
D | WebFormControlElement.cpp | 89 return constUnwrap<HTMLInputElement>()->shouldAutocomplete(); in autoComplete() 98 …unwrap<HTMLInputElement>()->setValue(value, sendEvents ? DispatchInputAndChangeEvent : DispatchNoE… in setValue() 108 return constUnwrap<HTMLInputElement>()->value(); in value() 119 unwrap<HTMLInputElement>()->setSuggestedValue(value); in setSuggestedValue() 129 return constUnwrap<HTMLInputElement>()->suggestedValue(); in suggestedValue() 140 return constUnwrap<HTMLInputElement>()->innerEditorValue(); in editingValue() 149 unwrap<HTMLInputElement>()->setSelectionRange(start, end); in setSelectionRange() 157 return constUnwrap<HTMLInputElement>()->selectionStart(); in selectionStart() 166 return constUnwrap<HTMLInputElement>()->selectionEnd(); in selectionEnd() 175 return constUnwrap<HTMLInputElement>()->directionForFormData(); in directionForFormData()
|
D | WebSearchableFormData.cpp | 140 const HTMLInputElement& inputElement = toHTMLInputElement(*formElement); in IsInDefaultState() 155 HTMLInputElement* findSuitableSearchInputElement(const HTMLFormElement* form) in findSuitableSearchInputElement() 157 HTMLInputElement* textElement = 0; in findSuitableSearchInputElement() 172 const HTMLInputElement& input = toHTMLInputElement(*control); in findSuitableSearchInputElement() 197 …orm, Vector<char>* encodedString, WTF::TextEncoding* encoding, const HTMLInputElement* textElement) in buildSearchString() 239 …HTMLInputElement* inputElement = static_cast<PassRefPtrWillBeRawPtr<HTMLInputElement> >(selectedIn… in WebSearchableFormData()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | RadioButtonGroupScope.cpp | 35 HTMLInputElement* checkedButton() const { return m_checkedButton; } in 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_checkedButton; 71 void RadioButtonGroup::setCheckedButton(HTMLInputElement* button) in setCheckedButton() [all …]
|
D | RadioButtonGroupScope.h | 32 class HTMLInputElement; variable 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;
|
D | InputTypeView.h | 50 class HTMLInputElement; variable 65 RefPtrWillBeMember<HTMLInputElement> checkedRadioButton; 76 static PassRefPtrWillBeRawPtr<InputTypeView> create(HTMLInputElement&); 121 InputTypeView(HTMLInputElement& element) : m_element(&element) { } in InputTypeView() 122 HTMLInputElement& element() const { return *m_element; } in element() 127 RawPtrWillBeMember<HTMLInputElement> m_element;
|
D | BaseClickableWithKeyInputType.h | 41 static void handleKeydownEvent(HTMLInputElement&, KeyboardEvent*); 42 static void handleKeypressEvent(HTMLInputElement&, KeyboardEvent*); 44 static void accessKeyAction(HTMLInputElement&, bool sendMouseEvents); 47 BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { } in BaseClickableWithKeyInputType()
|
D | RadioInputType.cpp | 40 PassRefPtrWillBeRawPtr<InputType> RadioInputType::create(HTMLInputElement& element) in create() 95 HTMLInputElement* inputElement = toHTMLInputElement(htmlElement); in handleKeydownEvent() 99 RefPtrWillBeRawPtr<HTMLInputElement> protector(inputElement); in handleKeydownEvent() 133 HTMLInputElement& focusedInput = toHTMLInputElement(*currentFocusedElement); in isKeyboardFocusable() 172 HTMLInputElement* checkedRadioButton = state.checkedRadioButton.get(); in didDispatchClick()
|
D | BaseClickableWithKeyInputType.cpp | 42 void BaseClickableWithKeyInputType::handleKeydownEvent(HTMLInputElement& element, KeyboardEvent* ev… in handleKeydownEvent() 52 void BaseClickableWithKeyInputType::handleKeypressEvent(HTMLInputElement& element, KeyboardEvent* e… in handleKeypressEvent() 76 void BaseClickableWithKeyInputType::accessKeyAction(HTMLInputElement& element, bool sendMouseEvents) in accessKeyAction()
|
D | ImageInputType.cpp | 43 inline ImageInputType::ImageInputType(HTMLInputElement& element) in ImageInputType() 48 PassRefPtrWillBeRawPtr<InputType> ImageInputType::create(HTMLInputElement& element) in create() 110 RefPtrWillBeRawPtr<HTMLInputElement> element(this->element()); in handleDOMActivateEvent() 189 RefPtrWillBeRawPtr<HTMLInputElement> element(this->element()); in height() 213 RefPtrWillBeRawPtr<HTMLInputElement> element(this->element()); in width()
|
D | FileInputType.cpp | 51 inline FileInputType::FileInputType(HTMLInputElement& element) in FileInputType() 57 PassRefPtrWillBeRawPtr<InputType> FileInputType::create(HTMLInputElement& element) in create() 154 HTMLInputElement& input = element(); in handleDOMActivateEvent() 260 …RefPtrWillBeRawPtr<HTMLInputElement> button = HTMLInputElement::create(element().document(), 0, fa… in createShadowSubtree() 286 RefPtrWillBeRawPtr<HTMLInputElement> input(element()); in setFiles() 325 HTMLInputElement& input = element(); in receiveDropForDirectoryUpload() 342 HTMLInputElement& input = element(); in receiveDroppedFiles()
|
D | ButtonInputType.h | 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 43 ButtonInputType(HTMLInputElement& element) : BaseButtonInputType(element) { } in ButtonInputType()
|
D | TelephoneInputType.h | 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 43 TelephoneInputType(HTMLInputElement& element) : BaseTextInputType(element) { } in TelephoneInputType()
|
D | TextInputType.h | 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 43 TextInputType(HTMLInputElement& element) : BaseTextInputType(element) { } in TextInputType()
|
D | ResetInputType.h | 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 43 ResetInputType(HTMLInputElement& element) : BaseButtonInputType(element) { } in ResetInputType()
|
D | URLInputType.h | 40 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); 43 URLInputType(HTMLInputElement& element) : BaseTextInputType(element) { } in URLInputType()
|
D | SearchInputType.cpp | 49 inline SearchInputType::SearchInputType(HTMLInputElement& element) in SearchInputType() 55 PassRefPtrWillBeRawPtr<InputType> SearchInputType::create(HTMLInputElement& element) in create() 111 RefPtrWillBeRawPtr<HTMLInputElement> input(element()); in handleKeydownEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderFileUploadControl.cpp | 48 RenderFileUploadControl::RenderFileUploadControl(HTMLInputElement* input) in RenderFileUploadControl() 60 HTMLInputElement* input = toHTMLInputElement(node()); in updateFromElement() 63 if (HTMLInputElement* button = uploadButton()) { in updateFromElement() 113 HTMLInputElement* button = uploadButton(); in paintObject() 161 if (HTMLInputElement* button = uploadButton()) in computeIntrinsicLogicalWidths() 205 HTMLInputElement* RenderFileUploadControl::uploadButton() const in uploadButton() 208 HTMLInputElement* input = toHTMLInputElement(node()); in uploadButton() 215 if (HTMLInputElement* button = uploadButton()) in buttonValue() 223 HTMLInputElement* input = toHTMLInputElement(node()); in fileTextValue()
|
D | RenderFileUploadControl.h | 28 class HTMLInputElement; variable 36 RenderFileUploadControl(HTMLInputElement*); 56 HTMLInputElement* uploadButton() const;
|
D | RenderSearchField.h | 30 class HTMLInputElement; variable 34 RenderSearchField(HTMLInputElement*);
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebInputElement.h | 37 namespace WebCore { class HTMLInputElement; } variable 90 WebInputElement(const PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>&); 91 WebInputElement& operator=(const PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>&); 92 operator PassRefPtrWillBeRawPtr<WebCore::HTMLInputElement>() const;
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | SliderThumbElement.cpp | 53 inline static Decimal sliderPosition(HTMLInputElement* element) in sliderPosition() 60 inline static bool hasVerticalAppearance(HTMLInputElement* input) in hasVerticalAppearance() 113 HTMLInputElement* input = toHTMLInputElement(node()->shadowHost()); in computeLogicalHeight() 146 HTMLInputElement* input = toHTMLInputElement(node()->shadowHost()); in layout() 261 RefPtrWillBeRawPtr<HTMLInputElement> input(hostInput()); in setPositionFromPoint() 348 HTMLInputElement* input = hostInput(); in defaultEventHandler() 379 const HTMLInputElement* input = hostInput(); in willRespondToMouseMoveEvents() 388 const HTMLInputElement* input = hostInput(); in willRespondToMouseClickEvents() 404 HTMLInputElement* SliderThumbElement::hostInput() const in hostInput() 425 HTMLInputElement* input = hostInput(); in shadowPseudoId()
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
D | HTMLInputElementFileSystem.h | 39 class HTMLInputElement; variable 44 static EntryHeapVector webkitEntries(ExecutionContext*, HTMLInputElement&);
|