Searched refs:form_structure (Results 1 – 9 of 9) sorted by relevance
/external/chromium/chrome/browser/autofill/ |
D | form_structure_unittest.cc | 72 FormStructure form_structure(form); in TEST() local 75 EXPECT_EQ(3U, form_structure.field_count()); in TEST() 105 FormStructure form_structure(form); in TEST() local 106 form_structure.DetermineHeuristicTypes(); in TEST() 109 EXPECT_EQ(1U, form_structure.autofill_count()); in TEST() 116 FormStructure form_structure(form); in TEST() local 118 EXPECT_EQ(form.origin, form_structure.source_url()); in TEST() 122 scoped_ptr<FormStructure> form_structure; in TEST() local 145 form_structure.reset(new FormStructure(form)); in TEST() 146 form_structure->DetermineHeuristicTypes(); in TEST() [all …]
|
D | autofill_manager.cc | 187 bool SectionIsAutofilled(const FormStructure* form_structure, in SectionIsAutofilled() argument 205 while (k < form_structure->field_count() && in SectionIsAutofilled() 206 *form_structure->field(k) != form.fields[j]) { in SectionIsAutofilled() 211 if (k >= form_structure->field_count()) in SectionIsAutofilled() 214 AutofillType autofill_type(form_structure->field(k)->type()); in SectionIsAutofilled() 380 FormStructure* form_structure = NULL; in OnQueryFormFieldAutofill() local 384 FindCachedFormAndField(form, field, &form_structure, &autofill_field) && in OnQueryFormFieldAutofill() 386 form_structure->IsAutofillable(false)) { in OnQueryFormFieldAutofill() 392 form_structure, field, type, &values, &labels, &icons, &unique_ids); in OnQueryFormFieldAutofill() 395 form_structure, field, type, &values, &labels, &icons, &unique_ids); in OnQueryFormFieldAutofill() [all …]
|
D | autofill_metrics_unittest.cc | 264 TestFormStructure* form_structure = new TestFormStructure(form); in TEST_F() local 265 form_structure->SetFieldTypes(heuristic_types, server_types); in TEST_F() 266 autofill_manager_->AddSeenForm(form_structure); in TEST_F() 430 TestFormStructure* form_structure = new TestFormStructure(form); in TEST_F() local 431 form_structure->SetFieldTypes(heuristic_types, server_types); in TEST_F() 432 autofill_manager_->AddSeenForm(form_structure); in TEST_F() 490 TestFormStructure* form_structure = new TestFormStructure(form); in TEST_F() local 491 form_structure->SetFieldTypes(heuristic_types, server_types); in TEST_F() 492 autofill_manager_->AddSeenForm(form_structure); in TEST_F() 673 TestFormStructure* form_structure = new TestFormStructure(form); in TEST_F() local [all …]
|
D | autofill_download_unittest.cc | 171 FormStructure *form_structure = new FormStructure(form); in TEST_F() local 173 form_structures.push_back(form_structure); in TEST_F() 200 form_structure = new FormStructure(form); in TEST_F() 201 form_structures.push_back(form_structure); in TEST_F() 305 form_structure = new FormStructure(form); in TEST_F() 306 form_structures.push_back(form_structure); in TEST_F() 390 FormStructure *form_structure = new FormStructure(form); in TEST_F() local 392 form_structures0.push_back(form_structure); in TEST_F() 401 form_structure = new FormStructure(form); in TEST_F() 403 form_structures1.push_back(form_structure); in TEST_F() [all …]
|
D | autofill_merge_unittest.cc | 192 FormStructure form_structure(form); in MergeProfiles() local 193 for (size_t i = 0; i < form_structure.field_count(); ++i) { in MergeProfiles() 197 const_cast<AutofillField*>(form_structure.field(i)); in MergeProfiles() 202 std::vector<const FormStructure*> form_structures(1, &form_structure); in MergeProfiles()
|
D | personal_data_manager_unittest.cc | 544 FormStructure form_structure(form); in TEST_F() local 545 form_structure.DetermineHeuristicTypes(); in TEST_F() 547 forms.push_back(&form_structure); in TEST_F() 591 FormStructure form_structure(form); in TEST_F() local 592 form_structure.DetermineHeuristicTypes(); in TEST_F() 594 forms.push_back(&form_structure); in TEST_F() 621 FormStructure form_structure(form); in TEST_F() local 622 form_structure.DetermineHeuristicTypes(); in TEST_F() 624 forms.push_back(&form_structure); in TEST_F() 674 FormStructure form_structure(form); in TEST_F() local [all …]
|
D | autofill_manager.h | 185 FormStructure** form_structure) const WARN_UNUSED_RESULT; 193 FormStructure** form_structure,
|
D | autofill_manager_unittest.cc | 2010 TestFormStructure* form_structure = new TestFormStructure(form); in TEST_F() local 2011 form_structure->DetermineHeuristicTypes(); in TEST_F() 2017 server_types.push_back(form_structure->field(i)->type()); in TEST_F() 2019 form_structure->SetFieldTypes(heuristic_types, server_types); in TEST_F() 2020 autofill_manager_->AddSeenForm(form_structure); in TEST_F()
|
/external/chromium/ |
D | Android.mk | 383 chrome/browser/autofill/form_structure.cc \
|