OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTMLFormElement
(Results
26 - 50
of
150
) sorted by null
1
2
3
4
5
6
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOutputElement.cpp
39
inline HTMLOutputElement::HTMLOutputElement(Document& document,
HTMLFormElement
* form)
47
PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& document,
HTMLFormElement
* form)
HTMLOutputElement.idl
27
[ImplementedAs=formOwner] readonly attribute
HTMLFormElement
form;
HTMLFormControlElementWithState.cpp
30
#include "core/html/
HTMLFormElement
.h"
38
HTMLFormControlElementWithState::HTMLFormControlElementWithState(const QualifiedName& tagName, Document& doc,
HTMLFormElement
* f)
HTMLLegendElement.cpp
73
HTMLFormElement
* HTMLLegendElement::form() const
HTMLFieldSetElement.cpp
42
inline HTMLFieldSetElement::HTMLFieldSetElement(Document& document,
HTMLFormElement
* form)
48
PassRefPtrWillBeRawPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(Document& document,
HTMLFormElement
* form)
HTMLFormElement.idl
23
] interface
HTMLFormElement
: HTMLElement {
HTMLKeygenElement.cpp
47
HTMLKeygenElement::HTMLKeygenElement(Document& document,
HTMLFormElement
* form)
52
PassRefPtrWillBeRawPtr<HTMLKeygenElement> HTMLKeygenElement::create(Document& document,
HTMLFormElement
* form)
FormAssociatedElement.cpp
32
#include "core/html/
HTMLFormElement
.h"
110
HTMLFormElement
* FormAssociatedElement::findAssociatedForm(const HTMLElement* element)
138
void FormAssociatedElement::associateByParser(
HTMLFormElement
* form)
147
void FormAssociatedElement::setForm(
HTMLFormElement
* newForm)
165
m_form = WeakPtr<
HTMLFormElement
>();
184
HTMLFormElement
* nearestForm = element->findFormAncestor();
192
HTMLFormElement
* originalForm = m_form.get();
195
//
HTMLFormElement
::associate.
HTMLElement.h
32
class
HTMLFormElement
;
78
virtual
HTMLFormElement
* formOwner() const { return 0; }
80
HTMLFormElement
* findFormAncestor() const;
HTMLFormControlElement.h
34
class
HTMLFormElement
;
66
virtual
HTMLFormElement
* formOwner() const OVERRIDE FINAL;
119
HTMLFormControlElement(const QualifiedName& tagName, Document&,
HTMLFormElement
*);
HTMLSelectElement.idl
27
[ImplementedAs=formOwner] readonly attribute
HTMLFormElement
form;
HTMLTextAreaElement.h
38
static PassRefPtrWillBeRawPtr<HTMLTextAreaElement> create(Document&,
HTMLFormElement
*);
66
HTMLTextAreaElement(Document&,
HTMLFormElement
*);
HTMLOptionElement.h
68
HTMLFormElement
* form() const;
HTMLButtonElement.cpp
34
#include "core/html/
HTMLFormElement
.h"
42
inline HTMLButtonElement::HTMLButtonElement(Document& document,
HTMLFormElement
* form)
49
PassRefPtrWillBeRawPtr<HTMLButtonElement> HTMLButtonElement::create(Document& document,
HTMLFormElement
* form)
HTMLObjectElement.idl
24
[ImplementedAs=formOwner] readonly attribute
HTMLFormElement
form;
HTMLSelectElement.h
46
static PassRefPtrWillBeRawPtr<HTMLSelectElement> create(Document&,
HTMLFormElement
*);
131
HTMLSelectElement(Document&,
HTMLFormElement
*);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h
50
class
HTMLFormElement
;
93
virtual PassRefPtrWillBeRawPtr<
HTMLFormElement
> formForSubmission() const;
FormController.h
37
class
HTMLFormElement
;
110
void willDeleteForm(
HTMLFormElement
*);
112
void restoreControlStateIn(
HTMLFormElement
&);
FormController.cpp
25
#include "core/html/
HTMLFormElement
.h"
36
static inline
HTMLFormElement
* ownerFormForState(const HTMLFormControlElementWithState& control)
304
void willDeleteForm(
HTMLFormElement
*);
309
typedef WillBeHeapHashMap<RawPtrWillBeMember<
HTMLFormElement
>, AtomicString> FormToKeyMap;
315
static inline void recordFormStructure(const
HTMLFormElement
& form, StringBuilder& builder)
337
static inline String formSignature(const
HTMLFormElement
& form)
355
HTMLFormElement
* form = ownerFormForState(control);
377
void FormKeyGenerator::willDeleteForm(
HTMLFormElement
* form)
512
void FormController::willDeleteForm(
HTMLFormElement
* form)
532
void FormController::restoreControlStateIn(
HTMLFormElement
& form
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp
39
#include "core/html/
HTMLFormElement
.h"
55
void GetFormEncoding(const
HTMLFormElement
* form, WTF::TextEncoding* encoding)
72
bool IsHTTPFormSubmit(const
HTMLFormElement
* form)
82
HTMLFormControlElement* GetButtonToActivate(
HTMLFormElement
* form)
151
// Look for a suitable search text field in a given
HTMLFormElement
157
HTMLInputElement* findSuitableSearchInputElement(const
HTMLFormElement
* form)
193
// Build a search string based on a given
HTMLFormElement
and HTMLInputElement
199
bool buildSearchString(const
HTMLFormElement
* form, Vector<char>* encodedString, WTF::TextEncoding* encoding, const HTMLInputElement* textElement)
238
RefPtrWillBeRawPtr<
HTMLFormElement
> formElement = static_cast<PassRefPtrWillBeRawPtr<
HTMLFormElement
> >(form)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp
32
#include "core/html/
HTMLFormElement
.h"
112
void EmptyFrameLoaderClient::dispatchWillSendSubmitEvent(
HTMLFormElement
*)
116
void EmptyFrameLoaderClient::dispatchWillSubmitForm(
HTMLFormElement
*)
144
void EmptyFrameLoaderClient::didRequestAutocomplete(
HTMLFormElement
*)
FrameLoaderClient.h
58
class
HTMLFormElement
;
107
virtual void dispatchWillSendSubmitEvent(
HTMLFormElement
*) = 0;
108
virtual void dispatchWillSubmitForm(
HTMLFormElement
*) = 0;
196
virtual void didRequestAutocomplete(
HTMLFormElement
*) = 0;
FormSubmission.h
44
class
HTMLFormElement
;
91
static PassRefPtrWillBeRawPtr<FormSubmission> create(
HTMLFormElement
*, const Attributes&, PassRefPtrWillBeRawPtr<Event>, FormSubmissionTrigger);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h
106
class
HTMLFormElement
;
198
void setForm(
HTMLFormElement
*);
199
HTMLFormElement
* form() const { return m_form.get(); }
200
PassRefPtrWillBeRawPtr<
HTMLFormElement
> takeForm();
253
RefPtrWillBeMember<
HTMLFormElement
> m_form;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8LazyEventListener.h
44
class
HTMLFormElement
;
Completed in 1172 milliseconds
1
2
3
4
5
6