Searched refs:FormAssociatedElement (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormAssociatedElement.cpp26 #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() function in class:blink::FormAssociatedElement
59 FormAssociatedElement::~FormAssociatedElement()
64 void FormAssociatedElement::trace(Visitor* visitor)
71 ValidityState* FormAssociatedElement
[all...]
H A DFormAssociatedElement.h43 class FormAssociatedElement : public WillBeGarbageCollectedMixin { class in namespace:blink
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&);
H A DHTMLFieldSetElement.h31 class FormAssociatedElement;
44 const FormAssociatedElement::List& associatedElements() const;
63 mutable FormAssociatedElement::List m_associatedElements;
H A DValidityState.h28 #include "core/html/FormAssociatedElement.h"
38 static PassOwnPtrWillBeRawPtr<ValidityState> create(FormAssociatedElement* control)
65 explicit ValidityState(FormAssociatedElement* control)
68 RawPtrWillBeMember<FormAssociatedElement> m_control;
H A DHTMLLabelElement.h27 #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 does
[all...]
H A DHTMLFormElement.h41 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;
H A DDOMFormData.cpp53 FormAssociatedElement* element = form->associatedElements()[i];
H A DHTMLFormControlsCollection.cpp59 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];
H A DHTMLObjectElement.h26 #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
H A DHTMLFormControlElementWithState.h55 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState, FormAssociatedElement, control, control->isFormControlElementWithState(), control.isFormControlElementWithState());
H A DHTMLFormElement.cpp175 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];
276 const FormAssociatedElement::List& elements = associatedElements();
282 WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> > unhandledInvalidControls;
295 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
308 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
383 const FormAssociatedElement
[all...]
H A DHTMLLabelElement.cpp34 #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);
H A DHTMLFormControlElement.h27 #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());
H A DHTMLFormControlsCollection.h27 #include "core/html/FormAssociatedElement.h"
60 const FormAssociatedElement::List& formControlElements() const;
H A DHTMLFormControlElement.cpp77 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);
H A DHTMLObjectElement.cpp74 FormAssociatedElement::trace(visitor);
320 FormAssociatedElement::insertedInto(insertionPoint);
327 FormAssociatedElement::removedFrom(insertionPoint);
432 FormAssociatedElement::didMoveToNewDocument(oldDocument);
453 return FormAssociatedElement::form();
H A DHTMLFieldSetElement.cpp130 const FormAssociatedElement::List& HTMLFieldSetElement::associatedElements() const
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFormElement.cpp89 const FormAssociatedElement::List& associatedElements = form->associatedElements();
90 for (FormAssociatedElement::List::const_iterator it = associatedElements.begin(); it != associatedElements.end(); ++it) {
H A DWebSearchableFormData.cpp85 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/
H A DFormController.h34 class FormAssociatedElement;
H A DFormController.cpp319 const FormAssociatedElement::List& controls = form.associatedElements();
534 const FormAssociatedElement::List& elements = form.associatedElements();
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormSubmission.cpp216 FormAssociatedElement* control = form->associatedElements()[i];
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_html.target.darwin-arm.mk30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \
H A Dwebcore_html.target.darwin-arm64.mk30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \
H A Dwebcore_html.target.darwin-mips.mk30 third_party/WebKit/Source/core/html/FormAssociatedElement.cpp \

Completed in 446 milliseconds

12