Searched defs:form_group (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/autofill/
H A Dautofill-inl.h12 explicit FormGroupMatchesByCompareFunctor(const T& form_group) argument
13 : form_group_(form_group) {
16 bool operator()(const T* form_group) { argument
17 return form_group->Compare(form_group_) == 0;
20 bool operator()(const T& form_group) { argument
21 return form_group.Compare(form_group_) == 0;
29 bool FindByContents(const C& container, const T& form_group) { argument
33 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
H A Dform_group.cc7 #include "chrome/browser/autofill/form_group.h"
13 bool FormGroup::operator!=(const FormGroup& form_group) const {
16 form_group.GetAvailableFieldTypes(&b);
25 return (!IntersectionOfTypesHasEqualValues(form_group));
28 bool FormGroup::IsSubsetOf(const FormGroup& form_group) const {
35 StringToLowerASCII(form_group.GetInfo(*iter)))
43 const FormGroup& form_group) const {
46 form_group.GetAvailableFieldTypes(&b);
58 StringToLowerASCII(form_group.GetInfo(*iter)))
65 void FormGroup::MergeWith(const FormGroup& form_group) { argument
79 OverwriteWith(const FormGroup& form_group) argument
[all...]
H A Dselect_control_handler.cc15 #include "chrome/browser/autofill/form_group.h"
159 bool FillCountrySelectControl(const FormGroup& form_group, argument
162 static_cast<const AutofillProfile&>(form_group);
200 void FillSelectControl(const FormGroup& form_group, argument
206 string16 field_text = form_group.GetInfo(type);
234 FillCountrySelectControl(form_group, field);
H A Dpersonal_data_manager.cc44 bool operator()(const T& form_group) { argument
45 return form_group.guid() == guid_;
48 bool operator()(const T* form_group) { argument
49 return form_group->guid() == guid_;
H A Dautofill_profile.cc233 const FormGroup* form_group = FormGroupForType(return_type); local
234 if (!form_group)
237 return form_group->GetInfo(return_type);
241 FormGroup* form_group = MutableFormGroupForType(type); local
242 if (form_group)
243 form_group->SetInfo(type, CollapseWhitespace(value, false));
623 FormGroup* form_group = NULL; local
626 form_group = &name_[0];
629 form_group = &email_[0];
632 form_group
[all...]

Completed in 97 milliseconds