HomeSort by relevance Sort by last modified time
    Searched refs:FormStructure (Results 1 - 17 of 17) sorted by null

  /external/chromium/chrome/browser/autofill/
form_structure.h 36 // FormStructure stores a single HTML form together with the values entered
38 class FormStructure {
40 explicit FormStructure(const webkit_glue::FormData& form);
41 virtual ~FormStructure();
47 // Encodes the XML upload request from this FormStructure.
55 static bool EncodeQueryRequest(const ScopedVector<FormStructure>& forms,
62 const std::vector<FormStructure*>& forms,
87 void UpdateFromCache(const FormStructure& cached_form);
176 DISALLOW_COPY_AND_ASSIGN(FormStructure);
form_structure_browsertest.cc 45 std::string FormStructuresToString(const std::vector<FormStructure*>& forms);
65 std::vector<FormStructure*> forms = autofill_manager->form_structures_.get();
70 const std::vector<FormStructure*>& forms) {
72 for (std::vector<FormStructure*>::const_iterator iter = forms.begin();
form_structure.cc 52 FormStructure::FormStructure(const FormData& form)
88 FormStructure::~FormStructure() {}
90 void FormStructure::DetermineHeuristicTypes() {
121 bool FormStructure::EncodeUploadRequest(bool autofill_used,
142 if (!EncodeFormRequest(FormStructure::UPLOAD, &autofill_request_xml))
153 bool FormStructure::EncodeQueryRequest(const ScopedVector<FormStructure>& forms,
173 for (ScopedVector<FormStructure>::const_iterator it = forms.begin()
    [all...]
form_structure_unittest.cc 45 return FormStructure::Hash64Bit(str);
72 FormStructure form_structure(form);
105 FormStructure form_structure(form);
116 FormStructure form_structure(form);
122 scoped_ptr<FormStructure> form_structure;
145 form_structure.reset(new FormStructure(form));
162 form_structure.reset(new FormStructure(form));
173 form_structure.reset(new FormStructure(form));
180 form_structure.reset(new FormStructure(form));
188 form_structure.reset(new FormStructure(form))
    [all...]
autofill_download.h 25 class FormStructure;
75 bool StartQueryRequest(const ScopedVector<FormStructure>& forms,
84 bool StartUploadRequest(const FormStructure& form, bool form_was_matched);
autofill_manager.h 97 void ImportFormData(const FormStructure& submitted_form);
100 void UploadFormData(const FormStructure& submitted_form);
141 ScopedVector<FormStructure>* form_structures() { return &form_structures_; }
185 FormStructure** form_structure) const WARN_UNUSED_RESULT;
193 FormStructure** form_structure,
199 void GetProfileSuggestions(FormStructure* form,
209 void GetCreditCardSuggestions(FormStructure* form,
243 void DeterminePossibleFieldTypesForUpload(FormStructure* submitted_form);
271 ScopedVector<FormStructure> form_structures_;
form_field.h 16 class FormStructure;
154 explicit FormFieldSet(FormStructure* form);
164 bool CheckECML(FormStructure* fields);
personal_data_manager_unittest.cc 544 FormStructure form_structure(form);
546 std::vector<const FormStructure*> forms;
591 FormStructure form_structure(form);
593 std::vector<const FormStructure*> forms;
621 FormStructure form_structure(form);
623 std::vector<const FormStructure*> forms;
674 FormStructure form_structure(form);
676 std::vector<const FormStructure*> forms;
777 FormStructure form_structure1(form1);
779 std::vector<const FormStructure*> forms
    [all...]
autofill_manager.cc 112 void FindSectionBounds(const FormStructure& form,
187 bool SectionIsAutofilled(const FormStructure* form_structure,
226 bool FormIsHTTPS(FormStructure* form) {
325 FormStructure submitted_form(form);
333 FormStructure* cached_submitted_form;
380 FormStructure* form_structure = NULL;
488 FormStructure* form_structure = NULL;
655 FormStructure::ParseQueryResponse(heuristic_xml,
682 FormStructure* submitted_form) {
693 void AutofillManager::ImportFormData(const FormStructure& submitted_form)
    [all...]
autofill_download_unittest.cc 171 FormStructure *form_structure = new FormStructure(form);
172 ScopedVector<FormStructure> form_structures;
200 form_structure = new FormStructure(form);
305 form_structure = new FormStructure(form);
390 FormStructure *form_structure = new FormStructure(form);
391 ScopedVector<FormStructure> form_structures0;
401 form_structure = new FormStructure(form);
402 ScopedVector<FormStructure> form_structures1
    [all...]
personal_data_manager.h 28 class FormStructure;
82 bool ImportFormData(const std::vector<const FormStructure*>& form_structures,
autofill_download.cc 92 const ScopedVector<FormStructure>& forms,
100 if (!FormStructure::EncodeQueryRequest(forms, &request_data.form_signatures,
121 const FormStructure& form, bool form_was_matched) {
autofill_merge_unittest.cc 192 FormStructure form_structure(form);
202 std::vector<const FormStructure*> form_structures(1, &form_structure);
form_field.cc 265 FormFieldSet::FormFieldSet(FormStructure* fields) {
308 bool FormFieldSet::CheckECML(FormStructure* fields) {
autofill_metrics_unittest.cc 142 void AddSeenForm(FormStructure* form) {
152 class TestFormStructure : public FormStructure {
154 explicit TestFormStructure(const FormData& form) : FormStructure(form) {}
    [all...]
personal_data_manager.cc 194 const std::vector<const FormStructure*>& form_structures,
207 std::vector<const FormStructure*>::const_iterator iter;
213 const FormStructure* form = *iter;
autofill_manager_unittest.cc 458 void AddSeenForm(FormStructure* form) {
577 class TestFormStructure : public FormStructure {
579 explicit TestFormStructure(const FormData& form) : FormStructure(form) {}
    [all...]

Completed in 139 milliseconds