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

  /external/chromium/chrome/browser/autofill/
autofill-inl.h 12 explicit FormGroupMatchesByCompareFunctor(const T& form_group)
13 : form_group_(form_group) {
16 bool operator()(const T* form_group) {
17 return form_group->Compare(form_group_) == 0;
20 bool operator()(const T& form_group) {
21 return form_group.Compare(form_group_) == 0;
29 bool FindByContents(const C& container, const T& form_group) {
33 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
form_group.h 43 // Returns true if the field data in |form_group| does not match the field
45 virtual bool operator!=(const FormGroup& form_group) const;
48 // |form_group|.
49 bool IsSubsetOf(const FormGroup& form_group) const;
53 bool IntersectionOfTypesHasEqualValues(const FormGroup& form_group) const;
55 // Merges the field data in |form_group| with this FormGroup.
56 void MergeWith(const FormGroup& form_group);
58 // Overwrites the field data in |form_group| with this FormGroup.
59 void OverwriteWith(const FormGroup& form_group);
form_group.cc 7 #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) {
    [all...]
select_control_handler.h 20 // Fills a select-one control with the appropriate value from |form_group|.
24 void FillSelectControl(const FormGroup& form_group,
select_control_handler.cc 15 #include "chrome/browser/autofill/form_group.h"
159 bool FillCountrySelectControl(const FormGroup& form_group,
162 static_cast<const AutofillProfile&>(form_group);
200 void FillSelectControl(const FormGroup& form_group,
206 string16 field_text = form_group.GetInfo(type);
234 FillCountrySelectControl(form_group, field);
autofill_profile.cc 233 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 = &company_
    [all...]
personal_data_manager.cc 44 bool operator()(const T& form_group) {
45 return form_group.guid() == guid_;
48 bool operator()(const T* form_group) {
49 return form_group->guid() == guid_;
  /external/clang/tools/scan-view/
ScanView.py 374 <table class="form_group">
595 <table class="form_group">
615 <table class="form_group">
  /external/chromium/
Android.mk 381 chrome/browser/autofill/form_group.cc \

Completed in 102 milliseconds