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

  /external/chromium/chrome/browser/autofill/
form_structure_unittest.cc 8 #include "chrome/browser/autofill/form_structure.h"
72 FormStructure form_structure(form);
75 EXPECT_EQ(3U, form_structure.field_count());
105 FormStructure form_structure(form);
106 form_structure.DetermineHeuristicTypes();
109 EXPECT_EQ(1U, form_structure.autofill_count());
116 FormStructure form_structure(form);
118 EXPECT_EQ(form.origin, form_structure.source_url());
122 scoped_ptr<FormStructure> form_structure; local
145 form_structure.reset(new FormStructure(form))
200 scoped_ptr<FormStructure> form_structure; local
288 scoped_ptr<FormStructure> form_structure; local
393 scoped_ptr<FormStructure> form_structure; local
474 scoped_ptr<FormStructure> form_structure; local
560 scoped_ptr<FormStructure> form_structure; local
622 scoped_ptr<FormStructure> form_structure; local
694 scoped_ptr<FormStructure> form_structure; local
745 scoped_ptr<FormStructure> form_structure; local
800 scoped_ptr<FormStructure> form_structure; local
852 scoped_ptr<FormStructure> form_structure; local
892 scoped_ptr<FormStructure> form_structure; local
933 scoped_ptr<FormStructure> form_structure; local
1036 scoped_ptr<FormStructure> form_structure; local
1089 scoped_ptr<FormStructure> form_structure; local
1144 scoped_ptr<FormStructure> form_structure; local
1327 scoped_ptr<FormStructure> form_structure; local
1480 scoped_ptr<FormStructure> form_structure; local
1559 scoped_ptr<FormStructure> form_structure; local
1682 scoped_ptr<FormStructure> form_structure; local
    [all...]
autofill_download_unittest.cc 13 #include "chrome/browser/autofill/form_structure.h"
171 FormStructure *form_structure = new FormStructure(form); local
173 form_structures.push_back(form_structure);
200 form_structure = new FormStructure(form);
201 form_structures.push_back(form_structure);
305 form_structure = new FormStructure(form);
306 form_structures.push_back(form_structure);
390 FormStructure *form_structure = new FormStructure(form); local
392 form_structures0.push_back(form_structure);
401 form_structure = new FormStructure(form)
    [all...]
autofill_metrics_unittest.cc 263 // |form_structure| will be owned by |autofill_manager_|.
264 TestFormStructure* form_structure = new TestFormStructure(form); local
265 form_structure->SetFieldTypes(heuristic_types, server_types);
266 autofill_manager_->AddSeenForm(form_structure);
429 // |form_structure| will be owned by |autofill_manager_|.
430 TestFormStructure* form_structure = new TestFormStructure(form); local
431 form_structure->SetFieldTypes(heuristic_types, server_types);
432 autofill_manager_->AddSeenForm(form_structure);
489 // |form_structure| will be owned by |autofill_manager_|.
490 TestFormStructure* form_structure = new TestFormStructure(form) local
673 TestFormStructure* form_structure = new TestFormStructure(form); local
787 TestFormStructure* form_structure = new TestFormStructure(form); local
    [all...]
autofill_manager.cc 27 #include "chrome/browser/autofill/form_structure.h"
183 // Precondition: |form_structure| and |form| should correspond to the same
186 // |form_structure| with indices in the range [section_start, section_end).
187 bool SectionIsAutofilled(const FormStructure* form_structure,
195 // The list of fields in |form_structure| and |form.fields| often match
197 // |form_structure| and |form.fields| do not match directly we search
198 // ahead in the |form_structure| for the matching field.
204 // Search forward in the |form_structure| for a corresponding field.
205 while (k < form_structure->field_count() &&
206 *form_structure->field(k) != form.fields[j])
380 FormStructure* form_structure = NULL; local
488 FormStructure* form_structure = NULL; local
    [all...]
autofill_manager_unittest.cc 2010 TestFormStructure* form_structure = new TestFormStructure(form); local
    [all...]

Completed in 70 milliseconds