HomeSort by relevance Sort by last modified time
    Searched defs:form_structure (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/components/autofill/core/browser/
autofill_download_unittest.cc 17 #include "components/autofill/core/browser/form_structure.h"
174 FormStructure *form_structure = new FormStructure(form); local
176 form_structures.push_back(form_structure);
200 form_structure = new FormStructure(form);
201 form_structures.push_back(form_structure);
293 form_structure = new FormStructure(form);
294 form_structures.push_back(form_structure);
364 FormStructure *form_structure = new FormStructure(form); local
366 form_structures0.push_back(form_structure);
372 form_structure = new FormStructure(form)
    [all...]
form_structure_unittest.cc 5 #include "components/autofill/core/browser/form_structure.h"
65 scoped_ptr<FormStructure> form_structure; local
93 form_structure.reset(new FormStructure(form));
94 EXPECT_EQ(4U, form_structure->field_count());
98 scoped_ptr<FormStructure> form_structure; local
124 form_structure.reset(new FormStructure(form));
125 form_structure->DetermineHeuristicTypes(TestAutofillMetrics());
126 EXPECT_EQ(1U, form_structure->autofill_count());
136 form_structure.reset(new FormStructure(form));
137 form_structure->DetermineHeuristicTypes(TestAutofillMetrics())
151 scoped_ptr<FormStructure> form_structure; local
226 scoped_ptr<FormStructure> form_structure; local
313 scoped_ptr<FormStructure> form_structure; local
382 scoped_ptr<FormStructure> form_structure; local
423 scoped_ptr<FormStructure> form_structure; local
466 scoped_ptr<FormStructure> form_structure; local
690 scoped_ptr<FormStructure> form_structure; local
768 scoped_ptr<FormStructure> form_structure; local
831 scoped_ptr<FormStructure> form_structure; local
897 scoped_ptr<FormStructure> form_structure; local
952 scoped_ptr<FormStructure> form_structure; local
1015 scoped_ptr<FormStructure> form_structure; local
1056 scoped_ptr<FormStructure> form_structure; local
1100 scoped_ptr<FormStructure> form_structure; local
1143 scoped_ptr<FormStructure> form_structure; local
1177 scoped_ptr<FormStructure> form_structure; local
1212 scoped_ptr<FormStructure> form_structure; local
1284 scoped_ptr<FormStructure> form_structure; local
1332 scoped_ptr<FormStructure> form_structure; local
1381 scoped_ptr<FormStructure> form_structure; local
1571 scoped_ptr<FormStructure> form_structure; local
1729 scoped_ptr<FormStructure> form_structure; local
2109 scoped_ptr<FormStructure> form_structure; local
2216 scoped_ptr<FormStructure> form_structure; local
    [all...]
autofill_metrics_unittest.cc 195 // |form_structure| will be owned by |form_structures()|.
196 TestFormStructure* form_structure = new TestFormStructure(empty_form); local
197 form_structure->SetFieldTypes(heuristic_types, server_types);
198 form_structures()->push_back(form_structure);
427 // |form_structure| will be owned by |autofill_manager_|.
623 // |form_structure| will be owned by |autofill_manager_|.
    [all...]
autofill_manager.cc 33 #include "components/autofill/core/browser/form_structure.h"
102 // Precondition: |form_structure| and |form| should correspond to the same
105 bool SectionIsAutofilled(const FormStructure& form_structure,
108 DCHECK_EQ(form_structure.field_count(), form.fields.size());
109 for (size_t i = 0; i < form_structure.field_count(); ++i) {
110 if (form_structure.field(i)->section() == section &&
290 FormStructure* form_structure = NULL;
292 if (!GetCachedFormAndField(form, field, &form_structure, &autofill_field))
407 FormStructure* form_structure = NULL;
409 if (!GetCachedFormAndField(form, field, &form_structure, &autofill_field)
450 FormStructure* form_structure = NULL; local
534 FormStructure* form_structure = NULL; local
    [all...]
autofill_manager_unittest.cc 2384 TestFormStructure* form_structure = new TestFormStructure(form); local
    [all...]
form_structure.cc 5 #include "components/autofill/core/browser/form_structure.h"
465 // To enable this logging, run with the flag --vmodule="form_structure=2".
629 FormStructure* form_structure = form_structures[i]; local
631 form.data.name = form_structure->form_name_;
633 base::ASCIIToUTF16((form_structure->method_ == POST) ? "POST" : "GET");
634 form.data.origin = form_structure->source_url_;
635 form.data.action = form_structure->target_url_;
636 form.signature = form_structure->FormSignature();
639 form_structure->fields_.begin();
640 field != form_structure->fields_.end(); ++field)
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 255 const FormData& form_structure,
261 form_structure,
604 ASSERT_EQ(20U, form_structure()->field_count());
606 form_structure()->field(11)->Type().GetStorableType());
607 EXPECT_EQ(ADDRESS_BILLING, form_structure()->field(11)->Type().group());
609 form_structure()->field(18)->Type().GetStorableType());
610 EXPECT_EQ(ADDRESS_HOME, form_structure()->field(18)->Type().group());
611 base::string16 billing_country = form_structure()->field(11)->value;
613 base::string16 shipping_country = form_structure()->field(18)->value;
620 form_structure()->field(1)->Type().GetStorableType())
638 const FormStructure* form_structure() { return form_structure_; } function in class:autofill::__anon9576::AutofillDialogControllerTest
    [all...]

Completed in 2459 milliseconds