HomeSort by relevance Sort by last modified time
    Searched refs:HTMLFormControlElement (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidationMessage.h 40 class HTMLFormControlElement;
44 // FIXME: Fold this class into HTMLFormControlElement. This class is very small.
48 static PassOwnPtr<ValidationMessage> create(HTMLFormControlElement*);
55 ValidationMessage(HTMLFormControlElement*);
58 HTMLFormControlElement* m_element;
HTMLFormControlElement.cpp 26 #include "core/html/HTMLFormControlElement.h"
47 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
66 HTMLFormControlElement::~HTMLFormControlElement()
70 String HTMLFormControlElement::formEnctype() const
78 void HTMLFormControlElement::setFormEnctype(const String& value)
83 String HTMLFormControlElement::formMethod() const
91 void HTMLFormControlElement::setFormMethod(const String& value)
96 bool HTMLFormControlElement::formNoValidate() cons
    [all...]
HTMLLegendElement.h 31 class HTMLFormControlElement;
41 HTMLFormControlElement* associatedControl();
HTMLFormControlElement.h 39 // HTMLFormControlElement is the default implementation of FormAssociatedElement,
40 // and form-associated element implementations should use HTMLFormControlElement
42 class HTMLFormControlElement : public LabelableElement, public FormAssociatedElement {
44 virtual ~HTMLFormControlElement();
103 static HTMLFormControlElement* enclosingFormControlElement(Node*);
109 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElement*);
174 inline HTMLFormControlElement* toHTMLFormControlElement(Node* node)
177 return static_cast<HTMLFormControlElement*>(node);
180 inline HTMLFormControlElement* toHTMLFormControlElement(FormAssociatedElement* control)
183 return static_cast<HTMLFormControlElement*>(control)
    [all...]
HTMLFormControlElementWithState.cpp 38 : HTMLFormControlElement(tagName, doc, f)
50 return HTMLFormControlElement::insertedInto(insertionPoint);
57 HTMLFormControlElement::removedFrom(insertionPoint);
90 HTMLFormControlElement::finishParsingChildren();
HTMLFormControlElementWithState.h 27 #include "core/html/HTMLFormControlElement.h"
33 class HTMLFormControlElementWithState : public HTMLFormControlElement {
ValidationMessage.cpp 34 #include "core/html/HTMLFormControlElement.h"
41 ALWAYS_INLINE ValidationMessage::ValidationMessage(HTMLFormControlElement* element)
53 PassOwnPtr<ValidationMessage> ValidationMessage::create(HTMLFormControlElement* element)
HTMLLegendElement.cpp 31 #include "core/html/HTMLFormControlElement.h"
50 HTMLFormControlElement* HTMLLegendElement::associatedControl()
76 if (HTMLFormControlElement* control = associatedControl())
82 if (HTMLFormControlElement* control = associatedControl())
HTMLButtonElement.cpp 43 : HTMLFormControlElement(tagName, document, form)
95 return HTMLFormControlElement::isPresentationAttribute(name);
109 HTMLFormControlElement::parseAttribute(name, value);
153 HTMLFormControlElement::defaultEventHandler(event);
160 return HTMLFormControlElement::willRespondToMouseClickEvents();
197 return attribute.name() == formactionAttr || HTMLFormControlElement::isURLAttribute(attribute);
207 return m_type == SUBMIT && HTMLFormControlElement::recalcWillValidate();
HTMLOutputElement.cpp 40 : HTMLFormControlElement(tagName, document, form)
70 HTMLFormControlElement::parseAttribute(name, value);
85 HTMLFormControlElement::childrenChanged(createdByParser, beforeChange, afterChange, childCountDelta);
HTMLFieldSetElement.cpp 41 : HTMLFormControlElement(tagName, document, form)
64 HTMLFormControlElement::disabledAttributeChanged();
70 HTMLFormControlElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
HTMLButtonElement.h 27 #include "core/html/HTMLFormControlElement.h"
31 class HTMLButtonElement FINAL : public HTMLFormControlElement {
50 // HTMLFormControlElement always creates one, but buttons don't need it.
HTMLFieldSetElement.h 27 #include "core/html/HTMLFormControlElement.h"
34 class HTMLFieldSetElement FINAL : public HTMLFormControlElement {
HTMLFormElement.h 29 #include "core/html/HTMLFormControlElement.h"
43 class HTMLFormControlElement;
101 HTMLFormControlElement* defaultButton() const;
158 bool checkInvalidControlsAndCollectUnhandled(Vector<RefPtr<FormAssociatedElement> >*, HTMLFormControlElement::CheckValidityDispatchEvents = HTMLFormControlElement::CheckValidityDispatchEventsAllowed);
HTMLOutputElement.h 35 #include "core/html/HTMLFormControlElement.h"
39 class HTMLOutputElement FINAL : public HTMLFormControlElement {
HTMLFormElement.cpp 182 HTMLFormControlElement* control = toHTMLFormControlElement(formAssociatedElement);
195 static inline HTMLFormControlElement* submitElementFromEvent(const Event* event)
210 HTMLFormControlElement* submitElement = submitElementFromEvent(event);
333 RefPtr<HTMLFormControlElement> firstSuccessfulSubmitButton;
341 HTMLFormControlElement* control = toHTMLFormControlElement(associatedElement);
617 HTMLFormControlElement* HTMLFormElement::defaultButton() const
622 HTMLFormControlElement* control = toHTMLFormControlElement(m_associatedElements[i]);
638 return !checkInvalidControlsAndCollectUnhandled(0, HTMLFormControlElement::CheckValidityDispatchEventsNone);
641 bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls, HTMLFormControlElement::CheckValidityDispatchEvents dispatchEvents)
645 // HTMLFormControlElement::checkValidity() might change m_associatedElements
    [all...]
HTMLKeygenElement.cpp 78 HTMLFormControlElement::parseAttribute(name, value);
FormAssociatedElement.cpp 30 #include "core/html/HTMLFormControlElement.h"
280 return static_cast<const HTMLFormControlElement*>(associatedElement);
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormControlElement.cpp 34 #include "core/html/HTMLFormControlElement.h"
44 return !constUnwrap<HTMLFormControlElement>()->isDisabledFormControl();
49 return constUnwrap<HTMLFormControlElement>()->isReadOnly();
54 return constUnwrap<HTMLFormControlElement>()->name();
59 return constUnwrap<HTMLFormControlElement>()->type();
64 unwrap<HTMLFormControlElement>()->dispatchFormControlChangeEvent();
69 String name = constUnwrap<HTMLFormControlElement>()->name();
73 name = constUnwrap<HTMLFormControlElement>()->getIdAttribute();
82 return WebFormElement(constUnwrap<HTMLFormControlElement>()->form());
85 WebFormControlElement::WebFormControlElement(const PassRefPtr<HTMLFormControlElement>& elem
    [all...]
WebPasswordFormUtils.h 39 class HTMLFormControlElement;
54 WebCore::HTMLFormControlElement* submit;
WebSearchableFormData.cpp 39 #include "core/html/HTMLFormControlElement.h"
84 HTMLFormControlElement* GetButtonToActivate(HTMLFormElement* form)
86 HTMLFormControlElement* firstSubmitButton = 0;
91 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
140 bool IsInDefaultState(HTMLFormControlElement* formElement)
166 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
209 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
275 HTMLFormControlElement* firstSubmitButton = GetButtonToActivate(formElement.get());
WebFormElement.cpp 37 #include "core/html/HTMLFormControlElement.h"
90 Vector<RefPtr<HTMLFormControlElement> > tempVector;
97 HTMLFormControlElement* element = toHTMLFormControlElement(form->associatedElements()[i]);
WebPasswordFormUtils.cpp 68 HTMLFormControlElement* control = toHTMLFormControlElement(formElements[i]);
WebPasswordFormData.cpp 114 HTMLFormControlElement* submit,
  /external/chromium_org/third_party/WebKit/public/web/
WebFormControlElement.h 39 namespace WebCore { class HTMLFormControlElement; }
72 WebFormControlElement(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
73 WebFormControlElement& operator=(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
74 operator WTF::PassRefPtr<WebCore::HTMLFormControlElement>() const;

Completed in 342 milliseconds

1 2