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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp 26 #include "core/html/FormAssociatedElement.h"
44 static PassOwnPtrWillBeRawPtr<FormAttributeTargetObserver> create(const AtomicString& id, FormAssociatedElement*);
49 FormAttributeTargetObserver(const AtomicString& id, FormAssociatedElement*);
51 RawPtrWillBeMember<FormAssociatedElement> m_element;
54 FormAssociatedElement::FormAssociatedElement()
59 FormAssociatedElement::~FormAssociatedElement()
64 void FormAssociatedElement::trace(Visitor* visitor)
71 ValidityState* FormAssociatedElement::validity(
    [all...]
FormAssociatedElement.h 43 class FormAssociatedElement : public WillBeGarbageCollectedMixin {
45 virtual ~FormAssociatedElement();
93 typedef WillBeHeapVector<RawPtrWillBeMember<FormAssociatedElement> > List;
96 FormAssociatedElement();
141 HTMLElement* toHTMLElement(FormAssociatedElement*);
142 HTMLElement& toHTMLElement(FormAssociatedElement&);
143 const HTMLElement* toHTMLElement(const FormAssociatedElement*);
144 const HTMLElement& toHTMLElement(const FormAssociatedElement&);
ValidityState.h 28 #include "core/html/FormAssociatedElement.h"
38 static PassOwnPtrWillBeRawPtr<ValidityState> create(FormAssociatedElement* control)
65 explicit ValidityState(FormAssociatedElement* control)
68 RawPtrWillBeMember<FormAssociatedElement> m_control;
HTMLFieldSetElement.h 31 class FormAssociatedElement;
44 const FormAssociatedElement::List& associatedElements() const;
63 mutable FormAssociatedElement::List m_associatedElements;
HTMLLabelElement.h 27 #include "core/html/FormAssociatedElement.h"
33 class HTMLLabelElement FINAL : public HTMLElement, public FormAssociatedElement {
73 // FormAssociatedElement methods
88 template<typename T> inline const T& toElement(const FormAssociatedElement&);
89 template<typename T> inline const T* toElement(const FormAssociatedElement*);
90 // Make toHTMLLabelElement() accept a FormAssociatedElement as input instead of a Node.
91 template<> inline const HTMLLabelElement* toElement<HTMLLabelElement>(const FormAssociatedElement* element)
94 // FormAssociatedElement doesn't have hasTagName, hence check for assert.
99 template<> inline const HTMLLabelElement& toElement<HTMLLabelElement>(const FormAssociatedElement& element)
102 // FormAssociatedElement doesn't have hasTagName, hence check for assert
    [all...]
HTMLObjectElement.h 26 #include "core/html/FormAssociatedElement.h"
33 class HTMLObjectElement FINAL : public HTMLPlugInElement, public FormAssociatedElement {
123 template<typename T> inline const T& toElement(const FormAssociatedElement&);
124 template<typename T> inline const T* toElement(const FormAssociatedElement*);
126 // Make toHTMLObjectElement() accept a FormAssociatedElement as input instead of a Node.
127 template<> inline const HTMLObjectElement* toElement<HTMLObjectElement>(const FormAssociatedElement* element)
132 // We need to assert after the cast because FormAssociatedElement doesn't
138 template<> inline const HTMLObjectElement& toElement<HTMLObjectElement>(const FormAssociatedElement& element)
143 // We need to assert after the cast because FormAssociatedElement doesn't
HTMLFormElement.h 41 class FormAssociatedElement;
70 void associate(FormAssociatedElement&);
71 void disassociate(FormAssociatedElement&);
118 const FormAssociatedElement::List& associatedElements() const;
147 void collectAssociatedElements(Node& root, FormAssociatedElement::List&) const;
156 bool checkInvalidControlsAndCollectUnhandled(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >*);
170 FormAssociatedElement::List m_associatedElements;
DOMFormData.cpp 53 FormAssociatedElement* element = form->associatedElements()[i];
HTMLFormControlElementWithState.h 55 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState, FormAssociatedElement, control, control->isFormControlElementWithState(), control.isFormControlElementWithState());
HTMLFormControlsCollection.cpp 59 const FormAssociatedElement::List& HTMLFormControlsCollection::formControlElements() const
72 static unsigned findFormAssociatedElement(const FormAssociatedElement::List& associatedElements, Element* element)
76 FormAssociatedElement* associatedElement = associatedElements[i];
85 const FormAssociatedElement::List& associatedElements = formControlElements();
95 FormAssociatedElement* associatedElement = associatedElements[i];
112 static HTMLElement* firstNamedItem(const FormAssociatedElement::List& elementsArray,
159 const FormAssociatedElement::List& elementsArray = formControlElements();
162 FormAssociatedElement* associatedElement = elementsArray[i];
HTMLFormControlsCollection.h 27 #include "core/html/FormAssociatedElement.h"
60 const FormAssociatedElement::List& formControlElements() const;
HTMLFormElement.cpp 175 FormAssociatedElement::List elements(associatedElements());
178 FormAssociatedElement::List elements;
214 const FormAssociatedElement::List& elements = associatedElements();
232 const FormAssociatedElement::List& elements = associatedElements();
234 FormAssociatedElement* formAssociatedElement = elements[i];
235 if (!formAssociatedElement->isFormControlElement())
237 HTMLFormControlElement* control = toHTMLFormControlElement(formAssociatedElement);
276 const FormAssociatedElement::List& elements = associatedElements();
282 WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> > unhandledInvalidControls
    [all...]
HTMLLabelElement.cpp 34 #include "core/html/FormAssociatedElement.h"
44 FormAssociatedElement::associateByParser(form);
83 return FormAssociatedElement::form();
252 FormAssociatedElement::insertedInto(insertionPoint);
269 FormAssociatedElement::removedFrom(insertionPoint);
275 FormAssociatedElement::trace(visitor);
HTMLFormControlElement.h 27 #include "core/html/FormAssociatedElement.h"
39 // HTMLFormControlElement is the default implementation of FormAssociatedElement,
42 class HTMLFormControlElement : public LabelableElement, public FormAssociatedElement {
93 bool checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls = 0);
195 DEFINE_TYPE_CASTS(HTMLFormControlElement, FormAssociatedElement, control, control->isFormControlElement(), control.isFormControlElement());
HTMLFormControlElement.cpp 77 FormAssociatedElement::trace(visitor);
245 FormAssociatedElement::didMoveToNewDocument(oldDocument);
255 FormAssociatedElement::insertedInto(insertionPoint);
266 FormAssociatedElement::removedFrom(insertionPoint);
293 return FormAssociatedElement::form();
470 bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls)
510 FormAssociatedElement::setCustomValidity(error);
HTMLObjectElement.cpp 74 FormAssociatedElement::trace(visitor);
320 FormAssociatedElement::insertedInto(insertionPoint);
327 FormAssociatedElement::removedFrom(insertionPoint);
432 FormAssociatedElement::didMoveToNewDocument(oldDocument);
453 return FormAssociatedElement::form();
HTMLFieldSetElement.cpp 130 const FormAssociatedElement::List& HTMLFieldSetElement::associatedElements() const
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormElement.cpp 89 const FormAssociatedElement::List& associatedElements = form->associatedElements();
90 for (FormAssociatedElement::List::const_iterator it = associatedElements.begin(); it != associatedElements.end(); ++it) {
WebSearchableFormData.cpp 85 const FormAssociatedElement::List& element = form->associatedElements();
86 for (FormAssociatedElement::List::const_iterator i(element.begin()); i != element.end(); ++i) {
160 const FormAssociatedElement::List& element = form->associatedElements();
161 for (FormAssociatedElement::List::const_iterator i(element.begin()); i != element.end(); ++i) {
203 const FormAssociatedElement::List& elements = form->associatedElements();
204 for (FormAssociatedElement::List::const_iterator i(elements.begin()); i != elements.end(); ++i) {
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.h 34 class FormAssociatedElement;
FormController.cpp 319 const FormAssociatedElement::List& controls = form.associatedElements();
534 const FormAssociatedElement::List& elements = form.associatedElements();
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.cpp 216 FormAssociatedElement* control = form->associatedElements()[i];
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_html.target.darwin-arm.mk 30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \
webcore_html.target.darwin-arm64.mk 30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \
webcore_html.target.darwin-mips.mk 30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \

Completed in 2427 milliseconds

1 2