HomeSort by relevance Sort by last modified time
    Searched refs:form_group (Results 1 - 20 of 20) 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/chromium_org/components/autofill/core/browser/
autofill-inl.h 13 explicit FormGroupMatchesByCompareFunctor(const T& form_group)
14 : form_group_(form_group) {
17 bool operator()(const T* form_group) {
18 return form_group->Compare(form_group_) == 0;
21 bool operator()(const T& form_group) {
22 return form_group.Compare(form_group_) == 0;
30 bool FindByContents(const C& container, const T& form_group) {
34 FormGroupMatchesByCompareFunctor<T>(form_group)) != container.end();
autofill_profile.cc 123 base::string16 GetFormGroupInfo(const FormGroup& form_group,
127 form_group.GetRawInfo(type.GetStorableType()) :
128 form_group.GetInfo(type, app_locale);
278 const FormGroup* form_group = FormGroupForType(AutofillType(type)); local
279 if (!form_group)
282 return form_group->GetRawInfo(type);
287 FormGroup* form_group = MutableFormGroupForType(AutofillType(type)); local
288 if (form_group)
289 form_group->SetRawInfo(type, CollapseWhitespace(value, false));
294 const FormGroup* form_group = FormGroupForType(type) local
304 FormGroup* form_group = MutableFormGroupForType(type); local
    [all...]
autofill_ie_toolbar_import_win.cc 22 #include "components/autofill/core/browser/form_group.h"
137 // given |form_group|, with the help of |reg_to_field|. When importing address
143 FormGroup* form_group,
168 form_group->SetInfo(AutofillType(it->second), field_value, app_locale);
personal_data_manager.cc 45 bool operator()(const T& form_group) {
46 return form_group.guid() == guid_;
49 bool operator()(const T* form_group) {
50 return form_group->guid() == guid_;
    [all...]
  /external/clang/tools/scan-view/
ScanView.py 374 <table class="form_group">
595 <table class="form_group">
615 <table class="form_group">
  /external/chromium_org/components/
autofill_core_browser.target.darwin-arm.mk 59 components/autofill/core/browser/form_group.cc \
autofill_core_browser.target.darwin-mips.mk 59 components/autofill/core/browser/form_group.cc \
autofill_core_browser.target.darwin-x86.mk 59 components/autofill/core/browser/form_group.cc \
autofill_core_browser.target.linux-arm.mk 59 components/autofill/core/browser/form_group.cc \
autofill_core_browser.target.linux-mips.mk 59 components/autofill/core/browser/form_group.cc \
autofill_core_browser.target.linux-x86.mk 59 components/autofill/core/browser/form_group.cc \
  /external/chromium/
Android.mk 382 chrome/browser/autofill/form_group.cc \
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_impl.cc 131 // Initializes |form_group| from user-entered data.
133 FormGroup* form_group) {
139 form_group->SetInfo(AutofillType(type),
143 form_group->SetRawInfo(type, iter->second);
    [all...]

Completed in 858 milliseconds