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

1 2

  /external/chromium/chrome/browser/autofill/
credit_card_field.h 15 class AutofillField;
24 std::vector<AutofillField*>::const_iterator* iter,
30 AutofillField* cardholder_; // Optional.
39 AutofillField* cardholder_last_;
41 AutofillField* type_; // Optional. TODO(jhawkins): Parse the select control.
42 AutofillField* number_; // Required.
45 AutofillField* verification_;
48 AutofillField* expiration_month_;
49 AutofillField* expiration_year_;
name_field.h 17 static NameField* Parse(std::vector<AutofillField*>::const_iterator* iter,
33 std::vector<AutofillField*>::const_iterator* iter);
36 explicit FullNameField(AutofillField* field);
38 AutofillField* field_;
46 std::vector<AutofillField*>::const_iterator* iter);
48 std::vector<AutofillField*>::const_iterator* iter);
50 std::vector<AutofillField*>::const_iterator* iter);
52 std::vector<AutofillField*>::const_iterator* iter, bool is_ecml);
59 AutofillField* first_name_;
60 AutofillField* middle_name_; // Optional
    [all...]
address_field.h 17 class AutofillField;
24 static AddressField* Parse(std::vector<AutofillField*>::const_iterator* iter,
39 static bool ParseCompany(std::vector<AutofillField*>::const_iterator* iter,
42 std::vector<AutofillField*>::const_iterator* iter,
44 static bool ParseCountry(std::vector<AutofillField*>::const_iterator* iter,
46 static bool ParseZipCode(std::vector<AutofillField*>::const_iterator* iter,
48 static bool ParseCity(std::vector<AutofillField*>::const_iterator* iter,
50 static bool ParseState(std::vector<AutofillField*>::const_iterator* iter,
57 AutofillField* company_; // optional
58 AutofillField* address1_
    [all...]
autofill_field.cc 28 AutofillField::AutofillField()
33 AutofillField::AutofillField(const webkit_glue::FormField& field,
41 AutofillField::~AutofillField() {}
43 void AutofillField::set_heuristic_type(AutofillFieldType type) {
54 AutofillFieldType AutofillField::type() const {
61 bool AutofillField::IsEmpty() const {
65 std::string AutofillField::FieldSignature() const
    [all...]
form_field.h 15 class AutofillField;
82 static bool Match(AutofillField* field,
89 std::vector<AutofillField*>::const_iterator* field,
94 static bool ParseText(std::vector<AutofillField*>::const_iterator* iter,
99 static bool ParseText(std::vector<AutofillField*>::const_iterator* iter,
101 AutofillField** dest);
105 static bool ParseEmptyText(std::vector<AutofillField*>::const_iterator* iter,
106 AutofillField** dest);
110 static bool ParseLabelText(std::vector<AutofillField*>::const_iterator* iter,
112 AutofillField** dest)
    [all...]
autofill_field.h 16 class AutofillField : public webkit_glue::FormField {
18 AutofillField();
19 AutofillField(const webkit_glue::FormField& field,
21 virtual ~AutofillField();
64 DISALLOW_COPY_AND_ASSIGN(AutofillField);
phone_field.h 16 class AutofillField;
26 static PhoneField* Parse(std::vector<AutofillField*>::const_iterator* iter,
29 std::vector<AutofillField*>::const_iterator* iter);
86 std::vector<AutofillField*>::const_iterator* iter,
111 AutofillField* parsed_phone_fields_[FIELD_MAX];
name_field_unittest.cc 20 ScopedVector<AutofillField> list_;
23 std::vector<AutofillField*>::const_iterator iter_;
31 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("First Name"),
39 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Middle Name"),
47 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Last Name"),
72 new AutofillField(webkit_glue::FormField(string16(),
80 new AutofillField(webkit_glue::FormField(string16(),
88 new AutofillField(webkit_glue::FormField(string16(),
113 new AutofillField(webkit_glue::FormField(string16(),
121 new AutofillField(webkit_glue::FormField(string16()
    [all...]
name_field.cc 15 NameField* NameField::Parse(std::vector<AutofillField*>::const_iterator* iter,
31 std::vector<AutofillField*>::const_iterator* iter) {
34 AutofillField* field = **iter;
48 FullNameField::FullNameField(AutofillField* field)
53 std::vector<AutofillField*>::const_iterator* iter) {
57 std::vector<AutofillField*>::const_iterator q = *iter;
59 AutofillField* next;
81 std::vector<AutofillField*>::const_iterator* iter) {
83 std::vector<AutofillField*>::const_iterator q = *iter;
120 std::vector<AutofillField*>::const_iterator* iter)
    [all...]
form_field.cc 98 static EmailField* Parse(std::vector<AutofillField*>::const_iterator* iter,
107 AutofillField* field;
115 explicit EmailField(AutofillField *field) : field_(field) {}
117 AutofillField* field_;
125 bool FormField::Match(AutofillField* field,
148 std::vector<AutofillField*>::const_iterator* iter,
171 bool FormField::ParseText(std::vector<AutofillField*>::const_iterator* iter,
173 AutofillField* field;
178 bool FormField::ParseText(std::vector<AutofillField*>::const_iterator* iter,
180 AutofillField** dest)
    [all...]
credit_card_field_unittest.cc 20 ScopedVector<AutofillField> list_;
23 std::vector<AutofillField*>::const_iterator iter_;
37 list_.push_back(new AutofillField);
46 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
54 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Year"),
69 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Card Number"),
84 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Card Number"),
92 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Month"),
100 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Exp Year"),
126 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Card Number")
    [all...]
form_structure.h 97 const AutofillField* field(int index) const;
104 std::vector<AutofillField*>::const_iterator begin() const {
107 std::vector<AutofillField*>::const_iterator end() const {
120 ScopedVector<AutofillField>* fields() { return &fields_; }
162 ScopedVector<AutofillField> fields_;
phone_field_unittest.cc 20 ScopedVector<AutofillField> list_;
23 std::vector<AutofillField*>::const_iterator iter_;
37 list_.push_back(new AutofillField);
46 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Phone"),
65 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Phone"),
84 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Area Code"),
92 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Phone"),
114 new AutofillField(
123 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Phone"),
145 new AutofillField(
    [all...]
autofill_field_unittest.cc 14 AutofillField field;
35 AutofillField field;
47 AutofillField field;
72 AutofillField field;
address_field_unittest.cc 20 ScopedVector<AutofillField> list_;
23 std::vector<AutofillField*>::const_iterator iter_;
37 list_.push_back(new AutofillField);
46 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Address"),
67 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Address"),
88 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Address"),
109 new AutofillField(
131 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Address"),
139 new AutofillField(webkit_glue::FormField(string16(),
163 new AutofillField(webkit_glue::FormField(ASCIIToUTF16("Address Line1")
    [all...]
credit_card_field.cc 51 std::vector<AutofillField*>::const_iterator* iter,
54 std::vector<AutofillField*>::const_iterator q = *iter;
89 std::vector<AutofillField*>::const_iterator p = q;
90 AutofillField* first;
address_field.cc 79 std::vector<AutofillField*>::const_iterator* iter,
86 std::vector<AutofillField*>::const_iterator q = *iter;
176 std::vector<AutofillField*>::const_iterator* iter,
196 std::vector<AutofillField*>::const_iterator* iter,
257 std::vector<AutofillField*>::const_iterator* iter,
279 std::vector<AutofillField*>::const_iterator* iter,
334 std::vector<AutofillField*>::const_iterator* iter,
355 std::vector<AutofillField*>::const_iterator* iter,
form_structure.cc 72 fields_.push_back(new AutofillField(*field, unique_name));
99 AutofillField* field = fields_[index];
238 for (std::vector<AutofillField*>::iterator field = form->fields_.begin();
240 // The field list is terminated by a NULL AutofillField.
307 for (std::vector<AutofillField*>::const_iterator iter = begin();
309 AutofillField* field = *iter;
330 std::map<std::string, const AutofillField*> cached_fields;
332 const AutofillField* field = cached_form.field(i);
336 for (std::vector<AutofillField*>::const_iterator iter = begin();
338 AutofillField* field = *iter
    [all...]
phone_field.cc 100 PhoneField* PhoneField::Parse(std::vector<AutofillField*>::const_iterator* iter,
125 std::vector<AutofillField*>::const_iterator* iter) {
128 AutofillField* field;
261 std::vector<AutofillField*>::const_iterator* iter,
269 std::vector<AutofillField*>::const_iterator q = *iter;
272 AutofillField* parsed_fields[FIELD_MAX];
form_structure_browsertest.cc 76 for (std::vector<AutofillField*>::const_iterator field_iter =
form_field_unittest.cc 13 AutofillField field;
autofill_manager.cc 113 const AutofillField& field,
127 const AutofillField* current_field = form.field(i);
381 AutofillField* autofill_field = NULL;
489 AutofillField* autofill_field = NULL;
684 const AutofillField* field = submitted_form->field(i);
807 AutofillField** autofill_field) {
816 // Find the AutofillField that corresponds to |field|.
818 for (std::vector<AutofillField*>::const_iterator iter =
821 // The field list is terminated with a NULL AutofillField, so don't try to
870 for (std::vector<AutofillField*>::const_iterator iter = form->begin()
    [all...]
autofill_manager.h 31 class AutofillField;
194 AutofillField** autofill_field) WARN_UNUSED_RESULT;
autofill_merge_unittest.cc 196 AutofillField* field =
197 const_cast<AutofillField*>(form_structure.field(i));
autofill_metrics_unittest.cc 163 AutofillField* field = (*fields())[i];
    [all...]

Completed in 145 milliseconds

1 2