OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebFormControlElement
(Results
1 - 25
of
36
) sorted by null
1
2
/external/chromium_org/components/autofill/content/renderer/
page_click_listener.h
9
class
WebFormControlElement
;
23
const blink::
WebFormControlElement
& element,
form_autofill_util.h
17
class
WebFormControlElement
;
35
// A bit field mask to extract data from
WebFormControlElement
.
38
EXTRACT_VALUE = 1 << 0, // Extract value from
WebFormControlElement
.
45
//
WebFormControlElement
.
62
bool IsSelectElement(const blink::
WebFormControlElement
& element);
65
bool IsTextAreaElement(const blink::
WebFormControlElement
& element);
92
std::vector<blink::
WebFormControlElement
>* autofillable_elements);
94
// Fills out a FormField object from a given
WebFormControlElement
.
97
const blink::
WebFormControlElement
& element,
110
const blink::
WebFormControlElement
& form_control_element
[
all
...]
form_cache.h
16
class
WebFormControlElement
;
44
bool ClearFormWithElement(const blink::
WebFormControlElement
& element);
autofill_agent.h
20
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
75
const blink::
WebFormControlElement
& element,
83
const blink::
WebFormControlElement
& element);
129
void TextFieldDidChangeImpl(const blink::
WebFormControlElement
& element);
145
void ShowSuggestions(const blink::
WebFormControlElement
& element,
153
void QueryAutofillSuggestions(const blink::
WebFormControlElement
& element,
193
blink::
WebFormControlElement
element_;
form_autofill_util.cc
26
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
41
using blink::
WebFormControlElement
;
87
bool IsAutofillableElement(const
WebFormControlElement
& element) {
155
IsAutofillableElement(element.toConst<
WebFormControlElement
>()))) {
205
base::string16 InferLabelFromPrevious(const
WebFormControlElement
& element) {
272
base::string16 InferLabelFromListItem(const
WebFormControlElement
& element) {
292
base::string16 InferLabelFromTableColumn(const
WebFormControlElement
& element) {
321
base::string16 InferLabelFromTableRow(const
WebFormControlElement
& element) {
350
base::string16 InferLabelFromDivTable(const
WebFormControlElement
& element) {
388
const
WebFormControlElement
& element)
[
all
...]
form_cache.cc
20
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
31
using blink::
WebFormControlElement
;
45
// K should inherit from
WebFormControlElement
as the function looks to extract
94
std::vector<
WebFormControlElement
> control_elements;
100
WebFormControlElement
element = control_elements[j];
153
if (!WebFormElementToFormData(form_element,
WebFormControlElement
(),
190
bool FormCache::ClearFormWithElement(const
WebFormControlElement
& element) {
195
std::vector<
WebFormControlElement
> control_elements;
199
WebFormControlElement
control_element = control_elements[i];
280
std::vector<
WebFormControlElement
> control_elements
[
all
...]
password_form_conversion_utils.cc
11
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
15
using blink::
WebFormControlElement
;
79
WebVector<
WebFormControlElement
> control_elements;
83
WebFormControlElement
control_element = control_elements[i];
180
blink::
WebFormControlElement
(),
autofill_agent.cc
39
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
54
using blink::
WebFormControlElement
;
210
WebFormControlElement
(),
288
WebFormControlElement
(),
320
const
WebFormControlElement
& element,
340
void AutofillAgent::textFieldDidChange(const
WebFormControlElement
& element) {
363
const
WebFormControlElement
& element) {
558
void AutofillAgent::ShowSuggestions(const
WebFormControlElement
& element,
615
const
WebFormControlElement
& element,
page_click_tracker.cc
22
using blink::
WebFormControlElement
;
password_generation_agent.cc
40
blink::WebVector<blink::
WebFormControlElement
> control_elements;
/external/chromium_org/third_party/WebKit/public/web/
WebTextAreaElement.h
34
#include "
WebFormControlElement
.h"
43
class WebTextAreaElement : public
WebFormControlElement
{
45
WebTextAreaElement() :
WebFormControlElement
() { }
46
WebTextAreaElement(const WebTextAreaElement& element) :
WebFormControlElement
(element) { }
50
WebFormControlElement
::assign(element);
53
void assign(const WebTextAreaElement& element) {
WebFormControlElement
::assign(element); }
WebSelectElement.h
35
#include "
WebFormControlElement
.h"
45
class WebSelectElement : public
WebFormControlElement
{
47
WebSelectElement() :
WebFormControlElement
() { }
48
WebSelectElement(const WebSelectElement& element) :
WebFormControlElement
(element) { }
52
WebFormControlElement
::assign(element);
55
void assign(const WebSelectElement& element) {
WebFormControlElement
::assign(element); }
WebFormControlElement.h
45
class
WebFormControlElement
: public WebElement {
47
WebFormControlElement
() : WebElement() { }
48
WebFormControlElement
(const
WebFormControlElement
& e) : WebElement(e) { }
50
WebFormControlElement
& operator=(const
WebFormControlElement
& e)
55
void assign(const
WebFormControlElement
& e) { WebElement::assign(e); }
119
WebFormControlElement
(const PassRefPtrWillBeRawPtr<WebCore::HTMLFormControlElement>&);
120
WebFormControlElement
& operator=(const PassRefPtrWillBeRawPtr<WebCore::HTMLFormControlElement>&);
WebAutofillClient.h
36
class
WebFormControlElement
;
51
virtual void textFieldDidChange(const
WebFormControlElement
&) { }
WebInputElement.h
34
#include "
WebFormControlElement
.h"
45
class WebInputElement : public
WebFormControlElement
{
47
WebInputElement() :
WebFormControlElement
() { }
48
WebInputElement(const WebInputElement& element) :
WebFormControlElement
(element) { }
52
WebFormControlElement
::assign(element);
55
void assign(const WebInputElement& element) {
WebFormControlElement
::assign(element); }
WebFormElement.h
44
class
WebFormControlElement
;
70
BLINK_EXPORT void getFormControlElements(WebVector<
WebFormControlElement
>&) const;
/external/chromium_org/third_party/WebKit/Source/web/
WebFormControlElement.cpp
32
#include "public/web/
WebFormControlElement
.h"
46
bool
WebFormControlElement
::isEnabled() const
51
bool
WebFormControlElement
::isReadOnly() const
56
WebString
WebFormControlElement
::formControlName() const
61
WebString
WebFormControlElement
::formControlType() const
66
void
WebFormControlElement
::dispatchFormControlChangeEvent()
71
bool
WebFormControlElement
::isAutofilled() const
76
void
WebFormControlElement
::setAutofilled(bool autofilled)
81
WebString
WebFormControlElement
::nameForAutofill() const
86
bool
WebFormControlElement
::autoComplete() cons
[
all
...]
WebTextAreaElement.cpp
44
:
WebFormControlElement
(element)
WebSelectElement.cpp
55
:
WebFormControlElement
(element)
WebFormElement.cpp
40
#include "public/web/
WebFormControlElement
.h"
86
void WebFormElement::getFormControlElements(WebVector<
WebFormControlElement
>& result) const
89
Vector<
WebFormControlElement
> formControlElements;
WebInputElement.cpp
143
:
WebFormControlElement
(elem)
ChromeClientImpl.cpp
870
m_webView->autofillClient()->textFieldDidChange(
WebFormControlElement
(&element));
blink_web.target.darwin-arm.mk
180
third_party/WebKit/Source/web/
WebFormControlElement
.cpp \
/external/chromium_org/chrome/renderer/autofill/
page_click_tracker_browsertest.cc
29
const blink::
WebFormControlElement
& element,
49
blink::
WebFormControlElement
form_control_element_clicked_;
form_autofill_browsertest.cc
25
#include "third_party/WebKit/public/web/
WebFormControlElement
.h"
36
using blink::
WebFormControlElement
;
168
const
WebFormControlElement
& element);
170
typedef WebString (*GetValueFunction)(
WebFormControlElement
element);
241
WebFormControlElement
element = GetMainFrame()->document().getElementById(
242
ASCIIToUTF16(field_case.name)).to<
WebFormControlElement
>();
268
const
WebFormControlElement
& element) {
272
static WebString GetValueWrapper(
WebFormControlElement
element) {
282
static WebString GetSuggestedValueWrapper(
WebFormControlElement
element) {
304
WebFormControlElement
element = web_element.to<WebFormControlElement>()
[
all
...]
Completed in 202 milliseconds
1
2