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

1 2

  /external/webkit/Source/WebKit/chromium/src/
WebFormControlElement.cpp 34 #include "HTMLFormControlElement.h"
43 return constUnwrap<HTMLFormControlElement>()->isEnabledFormControl();
48 return constUnwrap<HTMLFormControlElement>()->readOnly();
53 return constUnwrap<HTMLFormControlElement>()->name();
58 return constUnwrap<HTMLFormControlElement>()->type();
63 unwrap<HTMLFormControlElement>()->dispatchFormControlChangeEvent();
68 String name = constUnwrap<HTMLFormControlElement>()->name();
72 name = constUnwrap<HTMLFormControlElement>()->getIdAttribute();
79 WebFormControlElement::WebFormControlElement(const PassRefPtr<HTMLFormControlElement>& elem)
84 WebFormControlElement& WebFormControlElement::operator=(const PassRefPtr<HTMLFormControlElement>& elem
    [all...]
WebPasswordFormUtils.h 38 class HTMLFormControlElement;
48 WebCore::HTMLFormControlElement* submit;
WebPasswordFormUtils.cpp 72 HTMLFormControlElement* formElement = static_cast<HTMLFormControlElement*>(formElements[i]);
97 HTMLFormControlElement* formElement = static_cast<HTMLFormControlElement*>(formElements[i]);
WebFormElement.cpp 35 #include "HTMLFormControlElement.h"
90 Vector<RefPtr<HTMLFormControlElement> > tempVector;
97 HTMLFormControlElement* element = static_cast<HTMLFormControlElement*>(form->associatedElements()[i]);
  /external/webkit/Source/WebCore/dom/
CheckedRadioButtons.h 30 class HTMLFormControlElement;
35 void addButton(HTMLFormControlElement*);
36 void removeButton(HTMLFormControlElement*);
  /external/webkit/Source/WebCore/html/
HTMLLegendElement.h 27 #include "HTMLFormControlElement.h"
31 class HTMLLegendElement : public HTMLFormControlElement {
39 HTMLFormControlElement* associatedControl();
HTMLFormControlElement.cpp 26 #include "HTMLFormControlElement.h"
58 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form)
76 HTMLFormControlElement::~HTMLFormControlElement()
82 void HTMLFormControlElement::detach()
88 bool HTMLFormControlElement::formNoValidate() const
93 void HTMLFormControlElement::parseMappedAttribute(Attribute* attr)
123 static bool shouldAutofocus(HTMLFormControlElement* element)
156 void HTMLFormControlElement::attach(
    [all...]
HTMLLegendElement.cpp 36 : HTMLFormControlElement(tagName, document, form)
57 HTMLFormControlElement* HTMLLegendElement::associatedControl()
73 return static_cast<HTMLFormControlElement*>(element);
86 if (HTMLFormControlElement* control = associatedControl())
92 if (HTMLFormControlElement* control = associatedControl())
HTMLFieldSetElement.h 27 #include "HTMLFormControlElement.h"
31 class HTMLFieldSetElement : public HTMLFormControlElement {
HTMLLabelElement.h 28 #include "HTMLFormControlElement.h"
36 HTMLFormControlElement* control();
HTMLOptGroupElement.cpp 41 : HTMLFormControlElement(tagName, document, form)
71 HTMLFormControlElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
76 HTMLFormControlElement::parseMappedAttribute(attr);
93 HTMLFormControlElement::attach();
99 HTMLFormControlElement::detach();
HTMLFormElement.h 38 class HTMLFormControlElement;
106 HTMLFormControlElement* defaultButton() const;
110 HTMLFormControlElement* elementForAlias(const AtomicString&);
111 void addElementAlias(HTMLFormControlElement*, const AtomicString& alias);
150 typedef HashMap<RefPtr<AtomicStringImpl>, RefPtr<HTMLFormControlElement> > AliasMap;
HTMLLabelElement.cpp 31 #include "HTMLFormControlElement.h"
39 static HTMLFormControlElement* nodeAsLabelableFormControl(Node* node)
44 HTMLFormControlElement* formControlElement = static_cast<HTMLFormControlElement*>(node);
67 HTMLFormControlElement* HTMLLabelElement::control()
76 if (HTMLFormControlElement* formControlElement = nodeAsLabelableFormControl(node))
HTMLFormElement.cpp 184 HTMLFormControlElement* formElement = static_cast<HTMLFormControlElement*>(formAssociatedElement);
197 static inline HTMLFormControlElement* submitElementFromEvent(const Event* event)
205 return static_cast<HTMLFormControlElement*>(targetElement);
214 HTMLFormControlElement* submitElement = submitElementFromEvent(event);
220 static_cast<HTMLFormControlElement*>(m_associatedElements[i])->hideVisibleValidationMessage();
242 static_cast<HTMLFormControlElement*>(unhandled)->updateVisibleValidationMessage();
317 HTMLFormControlElement* firstSuccessfulSubmitButton = 0;
325 HTMLFormControlElement* control = static_cast<HTMLFormControlElement*>(associatedElement)
    [all...]
HTMLOutputElement.cpp 40 : HTMLFormControlElement(tagName, document, form)
64 HTMLFormControlElement::parseMappedAttribute(attr);
86 HTMLFormControlElement::childrenChanged(createdByParser, beforeChange, afterChange, childCountDelta);
HTMLButtonElement.cpp 44 : HTMLFormControlElement(tagName, document, form)
96 HTMLFormControlElement::parseMappedAttribute(attr);
137 HTMLFormControlElement::defaultEventHandler(event);
184 return m_type == SUBMIT && HTMLFormControlElement::recalcWillValidate();
HTMLButtonElement.h 27 #include "HTMLFormControlElement.h"
31 class HTMLButtonElement : public HTMLFormControlElement {
HTMLFieldSetElement.cpp 37 : HTMLFormControlElement(tagName, document, form)
HTMLFormControlElement.h 39 // HTMLFormControlElement is the default implementation of FormAssociatedElement,
40 // and form-associated element implementations should use HTMLFormControlElement
42 class HTMLFormControlElement : public HTMLElement, public FormAssociatedElement {
44 virtual ~HTMLFormControlElement();
110 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElement*);
171 class HTMLFormControlElementWithState : public HTMLFormControlElement {
HTMLOptGroupElement.h 27 #include "HTMLFormControlElement.h"
34 class HTMLOptGroupElement : public HTMLFormControlElement, public OptionGroupElement {
HTMLOutputElement.h 35 #include "HTMLFormControlElement.h"
40 class HTMLOutputElement : public HTMLFormControlElement {
HTMLProgressElement.h 25 #include "HTMLFormControlElement.h"
31 class HTMLProgressElement : public HTMLFormControlElement {
  /external/webkit/Source/WebKit/chromium/public/
WebFormControlElement.h 38 namespace WebCore { class HTMLFormControlElement; }
69 WebFormControlElement(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
70 WebFormControlElement& operator=(const WTF::PassRefPtr<WebCore::HTMLFormControlElement>&);
71 operator WTF::PassRefPtr<WebCore::HTMLFormControlElement>() const;
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.h 46 class HTMLFormControlElement;
52 using WebCore::HTMLFormControlElement;
69 // A bit field mask to extract data from HTMLFormControlElement.
72 EXTRACT_VALUE = 1 << 0, // Extract value from HTMLFormControlElement.
74 EXTRACT_OPTIONS = 1 << 2, // Extract options from HTMLFormControlElement.
80 // Fills out a FormField object from a given HTMLFormControlElement.
82 static void HTMLFormControlElementToFormField(HTMLFormControlElement* element, ExtractMask extract_mask, webkit_glue::FormField* field);
87 static string16 LabelForElement(const HTMLFormControlElement& element);
106 bool FindFormWithFormControlElement(HTMLFormControlElement* element, RequirementsMask requirements, webkit_glue::FormData* form);
145 typedef Callback3<HTMLFormControlElement*, const webkit_glue::FormField*, bool>::Type Callback
    [all...]
StringUtils.h 31 #include "HTMLFormControlElement.h"
34 using WebCore::HTMLFormControlElement;
50 inline string16 nameForAutofill(const HTMLFormControlElement& element)
65 inline string16 formControlType(const HTMLFormControlElement& element)

Completed in 1152 milliseconds

1 2