Home
last modified time | relevance | path

Searched refs:HTMLFormElement (Results 1 – 25 of 146) sorted by relevance

123456

/external/webkit/Source/WebCore/html/
DHTMLFormElement.cpp66 HTMLFormElement::HTMLFormElement(const QualifiedName& tagName, Document* document) in HTMLFormElement() function in WebCore::HTMLFormElement
80 PassRefPtr<HTMLFormElement> HTMLFormElement::create(Document* document) in create()
82 return adoptRef(new HTMLFormElement(formTag, document)); in create()
85 PassRefPtr<HTMLFormElement> HTMLFormElement::create(const QualifiedName& tagName, Document* documen… in create()
87 return adoptRef(new HTMLFormElement(tagName, document)); in create()
90 HTMLFormElement::~HTMLFormElement() in ~HTMLFormElement()
101 bool HTMLFormElement::formWouldHaveSecureSubmission(const String& url) in formWouldHaveSecureSubmission()
106 bool HTMLFormElement::rendererIsNeeded(RenderStyle* style) in rendererIsNeeded()
131 void HTMLFormElement::insertedIntoDocument() in insertedIntoDocument()
142 void HTMLFormElement::removedFromDocument() in removedFromDocument()
[all …]
DFormAssociatedElement.h32 class HTMLFormElement; variable
44 HTMLFormElement* form() const { return m_form; } in form()
58 void resetFormOwner(HTMLFormElement*);
61 FormAssociatedElement(HTMLFormElement*);
69 void setForm(HTMLFormElement* form) { m_form = form; } in setForm()
79 HTMLFormElement* m_form;
DHTMLImageElement.h33 class HTMLFormElement; variable
36 friend class HTMLFormElement; variable
39 static PassRefPtr<HTMLImageElement> create(const QualifiedName&, Document*, HTMLFormElement*);
78 HTMLImageElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
105 HTMLFormElement* m_form;
DHTMLFormCollection.cpp39 inline CollectionCache* HTMLFormCollection::formCollectionInfo(HTMLFormElement* form) in formCollectionInfo()
46 HTMLFormCollection::HTMLFormCollection(PassRefPtr<HTMLFormElement> form) in HTMLFormCollection()
51 PassRefPtr<HTMLFormCollection> HTMLFormCollection::create(PassRefPtr<HTMLFormElement> form) in create()
62 return static_cast<HTMLFormElement*>(base())->length(); in calcLength()
81 …Vector<FormAssociatedElement*>& elementsArray = static_cast<HTMLFormElement*>(base())->m_associate… in item()
109 HTMLFormElement* form = static_cast<HTMLFormElement*>(base()); in getNamedFormItem()
192 HTMLFormElement* f = static_cast<HTMLFormElement*>(base()); in updateNameCache()
DHTMLFormCollection.h30 class HTMLFormElement; variable
38 static PassRefPtr<HTMLFormCollection> create(PassRefPtr<HTMLFormElement>);
49 HTMLFormCollection(PassRefPtr<HTMLFormElement>);
54 static CollectionCache* formCollectionInfo(HTMLFormElement*);
DHTMLObjectElement.h31 class HTMLFormElement; variable
35 …static PassRefPtr<HTMLObjectElement> create(const QualifiedName&, Document*, HTMLFormElement*, boo…
48 HTMLFormElement* form() const { return FormAssociatedElement::form(); } in form()
67 HTMLObjectElement(const QualifiedName&, Document*, HTMLFormElement*, bool createdByParser);
100 virtual HTMLFormElement* virtualForm() const;
DHTMLIsIndexElement.h33 static PassRefPtr<HTMLIsIndexElement> create(Document*, HTMLFormElement*);
34 static PassRefPtr<HTMLIsIndexElement> create(const QualifiedName&, Document*, HTMLFormElement*);
37 HTMLIsIndexElement(const QualifiedName&, Document*, HTMLFormElement*);
DHTMLFormControlElement.h33 class HTMLFormElement; variable
46 HTMLFormElement* form() const { return FormAssociatedElement::form(); } in form()
110 HTMLFormControlElement(const QualifiedName& tagName, Document*, HTMLFormElement*);
146 virtual HTMLFormElement* virtualForm() const;
176 HTMLFormControlElementWithState(const QualifiedName& tagName, Document*, HTMLFormElement*);
217 HTMLTextFormControlElement(const QualifiedName&, Document*, HTMLFormElement*);
DHTMLFormElement.h46 class HTMLFormElement : public HTMLElement {
48 static PassRefPtr<HTMLFormElement> create(Document*);
49 static PassRefPtr<HTMLFormElement> create(const QualifiedName&, Document*);
50 virtual ~HTMLFormElement();
118 HTMLFormElement(const QualifiedName&, Document*);
DIsIndexInputType.cpp56 PassRefPtr<HTMLFormElement> IsIndexInputType::formForSubmission() const in formForSubmission()
58 RefPtr<HTMLFormElement> form = InputType::formForSubmission(); in formForSubmission()
63 form = HTMLFormElement::create(document); in formForSubmission()
DDOMFormData.h42 class HTMLFormElement; variable
47 …static PassRefPtr<DOMFormData> create(HTMLFormElement* form) { return adoptRef(new DOMFormData(for… in create()
55 explicit DOMFormData(HTMLFormElement*);
DHTMLIsIndexElement.cpp35 …lement::HTMLIsIndexElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) in HTMLIsIndexElement()
42 PassRefPtr<HTMLIsIndexElement> HTMLIsIndexElement::create(Document* document, HTMLFormElement* form) in create()
47 …HTMLIsIndexElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) in create()
DHTMLElement.h32 class HTMLFormElement; variable
78 HTMLFormElement* form() const { return virtualForm(); } in form()
82 HTMLFormElement* findFormAncestor() const;
101 virtual HTMLFormElement* virtualForm() const;
DFormAssociatedElement.cpp38 FormAssociatedElement::FormAssociatedElement(HTMLFormElement* form) in FormAssociatedElement()
84 m_form = static_cast<HTMLFormElement*>(formElement); in insertedIntoTree()
125 void FormAssociatedElement::resetFormOwner(HTMLFormElement* form) in resetFormOwner()
142 m_form = static_cast<HTMLFormElement*>(firstElement); in resetFormOwner()
DHTMLOptionElement.h39 static PassRefPtr<HTMLOptionElement> create(Document*, HTMLFormElement*);
40 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*, HTMLFormElement*);
67 HTMLOptionElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
/external/webkit/Source/WebKit/chromium/src/
DWebFormElement.cpp51 return constUnwrap<HTMLFormElement>()->autoComplete(); in autoComplete()
56 return constUnwrap<HTMLFormElement>()->action(); in action()
61 return constUnwrap<HTMLFormElement>()->name(); in name()
66 return constUnwrap<HTMLFormElement>()->method(); in method()
71 return constUnwrap<HTMLFormElement>()->wasUserSubmitted(); in wasUserSubmitted()
76 unwrap<HTMLFormElement>()->submit(); in submit()
83 unwrap<HTMLFormElement>()->getNamedElements(name, tempVector); in getNamedElements()
89 const HTMLFormElement* form = constUnwrap<HTMLFormElement>(); in getFormControlElements()
105 WebFormElement::WebFormElement(const PassRefPtr<HTMLFormElement>& e) in WebFormElement()
110 WebFormElement& WebFormElement::operator=(const PassRefPtr<HTMLFormElement>& e) in operator =()
[all …]
DWebSearchableFormData.cpp55 void GetFormEncoding(const HTMLFormElement* form, TextEncoding* encoding) in GetFormEncoding()
70 bool IsHTTPFormSubmit(const HTMLFormElement* form) in IsHTTPFormSubmit()
78 HTMLFormControlElement* GetButtonToActivate(HTMLFormElement* form) in GetButtonToActivate()
148 bool HasSuitableTextElement(const HTMLFormElement* form, Vector<char>* encodedString, String* encod… in HasSuitableTextElement()
228 RefPtr<HTMLFormElement> formElement = form.operator PassRefPtr<HTMLFormElement>(); in WebSearchableFormData()
DWebPasswordFormUtils.h39 class HTMLFormElement; variable
52 void findPasswordFormFields(WebCore::HTMLFormElement* form,
/external/webkit/Source/WebCore/loader/
DFormState.h37 class HTMLFormElement; variable
48 …static PassRefPtr<FormState> create(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValues…
50 HTMLFormElement* form() const { return m_form.get(); } in form()
56 …FormState(PassRefPtr<HTMLFormElement>, StringPairVector& textFieldValuesToAdopt, PassRefPtr<Frame>…
58 RefPtr<HTMLFormElement> m_form;
/external/webkit/Source/WebKit/chromium/public/
DWebFormElement.h38 namespace WebCore { class HTMLFormElement; } variable
73 WebFormElement(const WTF::PassRefPtr<WebCore::HTMLFormElement>&);
74 WebFormElement& operator=(const WTF::PassRefPtr<WebCore::HTMLFormElement>&);
75 operator WTF::PassRefPtr<WebCore::HTMLFormElement>() const;
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLFormElementCustom.cpp40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, const Identifier& pro… in canGetItemsForName()
50 HTMLFormElement* form = static_cast<HTMLFormElement*>(jsForm->impl()); in nameGetter()
DJSDOMFormDataCustom.cpp44 static HTMLFormElement* toHTMLFormElement(JSC::JSValue value) in toHTMLFormElement()
46 …return value.inherits(&JSHTMLFormElement::s_info) ? static_cast<HTMLFormElement*>(static_cast<JSHT… in toHTMLFormElement()
53 HTMLFormElement* form = 0; in constructJSDOMFormData()
/external/webkit/Source/WebKit/win/
DWebActionPropertyBag.h36 …createInstance(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassRefPtr<…
39 …WebActionPropertyBag(const WebCore::NavigationAction&, PassRefPtr<WebCore::HTMLFormElement>, PassR…
61 RefPtr<WebCore::HTMLFormElement> m_form;
/external/webkit/Source/WebCore/html/parser/
DHTMLConstructionSite.h92 void setForm(HTMLFormElement*);
93 HTMLFormElement* form() const { return m_form.get(); } in form()
94 PassRefPtr<HTMLFormElement> takeForm();
143 RefPtr<HTMLFormElement> m_form;
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
DFormManagerAndroid.h47 class HTMLFormElement; variable
53 using WebCore::HTMLFormElement;
96 …static bool HTMLFormElementToFormData(HTMLFormElement* element, RequirementsMask requirements, Ext…

123456