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

1 2

  /external/chromium_org/components/autofill/core/browser/
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_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_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...]
autofill_merge_unittest.cc 16 #include "components/autofill/core/browser/form_structure.h"
220 FormStructure form_structure(form);
221 for (size_t i = 0; i < form_structure.field_count(); ++i) {
225 const_cast<AutofillField*>(form_structure.field(i));
233 personal_data_.ImportFormData(form_structure, &imported_credit_card);
personal_data_manager_unittest.cc 18 #include "components/autofill/core/browser/form_structure.h"
589 FormStructure form_structure(form);
590 form_structure.DetermineHeuristicTypes(TestAutofillMetrics());
592 EXPECT_TRUE(personal_data_->ImportFormData(form_structure,
630 FormStructure form_structure(form);
631 form_structure.DetermineHeuristicTypes(TestAutofillMetrics());
633 EXPECT_FALSE(personal_data_->ImportFormData(form_structure,
663 FormStructure form_structure(form);
664 form_structure.DetermineHeuristicTypes(TestAutofillMetrics());
666 EXPECT_TRUE(personal_data_->ImportFormData(form_structure,
    [all...]
autofill_manager.h 26 #include "components/autofill/core/browser/form_structure.h"
233 // Fills |form_structure| cached element corresponding to |form|.
236 FormStructure** form_structure) const WARN_UNUSED_RESULT;
238 // Fills |form_structure| and |autofill_field| with the cached elements
244 FormStructure** form_structure,
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...]
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...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller.cc 16 const FormData& form_structure,
autofill_dialog_controller.h 15 #include "components/autofill/core/browser/form_structure.h"
38 const FormData& form_structure,
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...]
data_model_wrapper.h 15 #include "components/autofill/core/browser/form_structure.h"
76 // Fills in |form_structure| with the data that this model contains. |inputs|
79 // in |form_structure| were found to be matching.
83 FormStructure* form_structure) const;
data_model_wrapper.cc 24 #include "components/autofill/core/browser/form_structure.h"
89 FormStructure* form_structure) const {
90 return form_structure->FillFields(
autofill_dialog_controller_impl.h 31 #include "components/autofill/core/browser/form_structure.h"
88 const FormData& form_structure,
237 const FormData& form_structure,
414 // Returns whether |form_structure|_| has any fields that match the fieldset
    [all...]
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_controller_android.cc 104 FormStructure& form_structure,
118 form_structure.FillFields(types,
126 FormStructure& form_structure,
139 form_structure, full_wallet, email_address);
143 for (size_t i = 0; i < form_structure.field_count(); ++i) {
144 AutofillField* field = form_structure.field(i);
151 // Returns true if |input_type| in |section| is needed for |form_structure|.
154 const FormStructure& form_structure) {
155 for (size_t i = 0; i < form_structure.field_count(); ++i) {
156 const AutofillField* field = form_structure.field(i)
    [all...]
autofill_dialog_controller_android.h 28 const FormData& form_structure,
56 const FormData& form_structure,
  /external/chromium_org/components/autofill/content/browser/
request_autocomplete_manager.cc 9 #include "components/autofill/core/browser/form_structure.h"
68 const FormStructure* form_structure) {
80 if (form_structure) {
81 form_data = form_structure->ToFormData();
request_autocomplete_manager.h 36 // |form_structure| containing the filled form data. |debug_message| will
41 const FormStructure* form_structure);
request_autocomplete_manager_unittest.cc 51 FormStructure form_structure(form);
53 AutocompleteResultSuccess, base::string16(), &form_structure);
content_autofill_driver_unittest.cc 261 FormStructure form_structure(form);
262 std::vector<FormStructure*> forms(1, &form_structure);
273 FormStructure form_structure(form);
274 std::vector<FormStructure*> forms(1, &form_structure);
  /external/chromium_org/components/
autofill_core_browser.target.darwin-arm.mk 62 components/autofill/core/browser/form_structure.cc \
autofill_core_browser.target.darwin-arm64.mk 62 components/autofill/core/browser/form_structure.cc \
autofill_core_browser.target.darwin-mips.mk 62 components/autofill/core/browser/form_structure.cc \
autofill_core_browser.target.darwin-x86.mk 62 components/autofill/core/browser/form_structure.cc \
autofill_core_browser.target.darwin-x86_64.mk 62 components/autofill/core/browser/form_structure.cc \

Completed in 228 milliseconds

1 2