HomeSort by relevance Sort by last modified time
    Searched refs:AutofillType (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/components/autofill/core/browser/
autofill_type.h 16 class AutofillType {
18 explicit AutofillType(ServerFieldType field_type);
19 AutofillType(HtmlFieldType field_type, HtmlFieldMode mode);
20 AutofillType(const AutofillType& autofill_type);
21 AutofillType& operator=(const AutofillType& autofill_type);
autofill_type_unittest.cc 13 AutofillType none(NO_SERVER_DATA);
18 AutofillType unknown(UNKNOWN_TYPE);
23 AutofillType first(NAME_FIRST);
28 AutofillType phone(PHONE_HOME_NUMBER);
33 AutofillType billing_address(ADDRESS_BILLING_LINE1);
38 AutofillType last(NAME_BILLING_SUFFIX);
43 AutofillType boundary(MAX_VALID_FIELD_TYPE);
48 AutofillType beyond(static_cast<ServerFieldType>(MAX_VALID_FIELD_TYPE + 10));
53 AutofillType between(static_cast<ServerFieldType>(16));
60 AutofillType unknown(HTML_TYPE_UNKNOWN, HTML_MODE_NONE)
    [all...]
address_i18n.h 21 class AutofillType;
28 const base::Callback<base::string16(const AutofillType&)>& get_info);
address_i18n.cc 23 const AutofillType& type) {
32 const base::Callback<base::string16(const AutofillType&)>& get_info) {
35 get_info.Run(AutofillType(NAME_FULL)));
37 get_info.Run(AutofillType(HTML_TYPE_COUNTRY_CODE, HTML_MODE_NONE)));
39 get_info.Run(AutofillType(ADDRESS_HOME_STATE)));
41 get_info.Run(AutofillType(ADDRESS_HOME_CITY)));
43 get_info.Run(AutofillType(ADDRESS_HOME_DEPENDENT_LOCALITY)));
45 get_info.Run(AutofillType(ADDRESS_HOME_SORTING_CODE)));
47 get_info.Run(AutofillType(ADDRESS_HOME_ZIP)));
50 get_info.Run(AutofillType(ADDRESS_HOME_STREET_ADDRESS)))
    [all...]
form_group.h 15 class AutofillType;
47 virtual base::string16 GetInfo(const AutofillType& type,
52 virtual bool SetInfo(const AutofillType& type,
phone_number_unittest.cc 24 phone_number.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER), phone, "US");
97 EXPECT_TRUE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER),
103 EXPECT_TRUE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER),
109 EXPECT_TRUE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER),
116 EXPECT_FALSE(phone.SetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER),
129 phone.GetInfo(AutofillType(PHONE_HOME_CITY_CODE), "US"));
134 phone.GetInfo(AutofillType(PHONE_HOME_CITY_CODE), "US"));
140 phone.GetInfo(AutofillType(PHONE_HOME_CITY_CODE), "US"));
147 phone.GetInfo(AutofillType(PHONE_HOME_CITY_CODE), "US"));
155 EXPECT_FALSE(number1.SetInfo(AutofillType(ADDRESS_BILLING_CITY)
    [all...]
autofill_data_model.h 15 class AutofillType;
29 virtual base::string16 GetInfoForVariant(const AutofillType& type,
address_unittest.cc 25 address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
29 AutofillType(ADDRESS_HOME_COUNTRY), ASCIIToUTF16("US"), "en-US");
30 country = address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
33 AutofillType(HTML_TYPE_COUNTRY_NAME, HTML_MODE_NONE), "en-US");
36 AutofillType(HTML_TYPE_COUNTRY_CODE, HTML_MODE_NONE), "en-US");
40 country = address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
43 AutofillType(HTML_TYPE_COUNTRY_NAME, HTML_MODE_NONE), "en-US");
46 AutofillType(HTML_TYPE_COUNTRY_CODE, HTML_MODE_NONE), "en-US");
57 AutofillType(ADDRESS_HOME_COUNTRY), ASCIIToUTF16("United States"),
60 address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US")
    [all...]
form_group.cc 23 if (GetInfo(AutofillType(*type), app_locale) == text)
34 if (!GetInfo(AutofillType(*type), app_locale).empty())
39 base::string16 FormGroup::GetInfo(const AutofillType& type,
44 bool FormGroup::SetInfo(const AutofillType& type,
autofill_type.cc 11 AutofillType::AutofillType(ServerFieldType field_type)
24 AutofillType::AutofillType(HtmlFieldType field_type, HtmlFieldMode mode)
30 AutofillType::AutofillType(const AutofillType& autofill_type) {
34 AutofillType& AutofillType::operator=(const AutofillType& autofill_type)
    [all...]
autofill_data_model.cc 19 const AutofillType& type,
phone_number.h 39 virtual base::string16 GetInfo(const AutofillType& type,
41 virtual bool SetInfo(const AutofillType& type,
59 bool SetInfo(const AutofillType& type, const base::string16& value);
autofill_profile.h 50 virtual base::string16 GetInfo(const AutofillType& type,
52 virtual bool SetInfo(const AutofillType& type,
58 const AutofillType& type,
67 void GetMultiInfo(const AutofillType& type,
157 void GetMultiInfoImpl(const AutofillType& type,
191 const FormGroup* FormGroupForType(const AutofillType& type) const;
192 FormGroup* MutableFormGroupForType(const AutofillType& type);
address.h 30 virtual base::string16 GetInfo(const AutofillType& type,
32 virtual bool SetInfo(const AutofillType& type,
autofill_field.h 17 class AutofillType;
52 AutofillType Type() const;
phone_number.cc 65 DCHECK_EQ(PHONE_HOME, AutofillType(type).group());
77 DCHECK_EQ(PHONE_HOME, AutofillType(type).group());
94 base::string16 PhoneNumber::GetInfo(const AutofillType& type,
129 bool PhoneNumber::SetInfo(const AutofillType& type,
152 base::string16 number = GetInfo(AutofillType(PHONE_HOME_NUMBER), app_locale);
162 GetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER), app_locale);
183 bool PhoneNumber::PhoneCombineHelper::SetInfo(const AutofillType& type,
  /external/chromium_org/chrome/browser/ui/autofill/
data_model_wrapper.h 31 class AutofillType;
53 virtual base::string16 GetInfo(const AutofillType& type) const = 0;
57 virtual base::string16 GetInfoForDisplay(const AutofillType& type) const;
97 const AutofillType& variant_type,
101 virtual base::string16 GetInfo(const AutofillType& type) const OVERRIDE;
102 virtual base::string16 GetInfoForDisplay(const AutofillType& type) const
109 size_t GetVariantForType(const AutofillType& type) const;
128 virtual base::string16 GetInfo(const AutofillType& type) const OVERRIDE;
140 virtual base::string16 GetInfo(const AutofillType& type) const OVERRIDE;
158 virtual base::string16 GetInfo(const AutofillType& type) const OVERRIDE
    [all...]
data_model_wrapper.cc 37 GetInfoForDisplay(AutofillType((*inputs)[i].type));
41 base::string16 DataModelWrapper::GetInfoForDisplay(const AutofillType& type)
54 GetInfoForDisplay(AutofillType(PHONE_HOME_WHOLE_NUMBER));
68 base::string16 email = GetInfoForDisplay(AutofillType(EMAIL_ADDRESS));
108 const AutofillType& type,
116 base::string16 AutofillProfileWrapper::GetInfo(const AutofillType& type) const {
120 AutofillType effective_type = type;
122 effective_type = AutofillType(NAME_BILLING_FULL);
130 const AutofillType& type) const {
142 GetInfo(AutofillType(HTML_TYPE_COUNTRY_CODE, HTML_MODE_NONE)))
    [all...]
data_model_wrapper_unittest.cc 30 wrapper.GetInfo(AutofillType(CREDIT_CARD_EXP_MONTH)));
88 instrument_wrapper.GetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER)));
92 address_wrapper.GetInfo(AutofillType(PHONE_HOME_WHOLE_NUMBER)));
165 wrapper.GetInfo(AutofillType(CREDIT_CARD_EXP_MONTH)));
188 AutofillType(PHONE_HOME_WHOLE_NUMBER)));
192 AutofillType(PHONE_HOME_WHOLE_NUMBER)));
199 AutofillType(PHONE_HOME_WHOLE_NUMBER)));
202 AutofillType(PHONE_HOME_WHOLE_NUMBER)));
208 AutofillType(PHONE_HOME_WHOLE_NUMBER)));
211 AutofillType(PHONE_HOME_WHOLE_NUMBER)))
    [all...]
autofill_dialog_common.cc 17 const AutofillType& field_type) {
34 AutofillType autofill_type = AutofillType(type);
56 AutofillType field_type = field.Type();
68 return AutofillType(type).group() == CREDIT_CARD;
autofill_dialog_common.h 35 const AutofillType& field_type);
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet_unittest.cc 475 full_wallet.GetInfo("", AutofillType(CREDIT_CARD_NUMBER)));
478 "", AutofillType(CREDIT_CARD_VERIFICATION_CODE)));
494 full_wallet.GetInfo("", AutofillType(CREDIT_CARD_NUMBER)));
497 "", AutofillType(CREDIT_CARD_VERIFICATION_CODE)));
512 "", AutofillType(CREDIT_CARD_EXP_2_DIGIT_YEAR)));
516 "", AutofillType(CREDIT_CARD_EXP_DATE_2_DIGIT_YEAR)));
520 "", AutofillType(CREDIT_CARD_EXP_DATE_4_DIGIT_YEAR)));
526 full_wallet.GetInfo("", AutofillType(CREDIT_CARD_TYPE)));
536 full_wallet->GetInfo("", AutofillType(CREDIT_CARD_NUMBER)));
538 full_wallet->GetInfo("", AutofillType(CREDIT_CARD_TYPE)))
    [all...]
full_wallet.h 24 class AutofillType;
56 const AutofillType& type);
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.h 21 class AutofillType;
86 const autofill::AutofillType& type,
two_client_autofill_sync_test.cc 20 using autofill::AutofillType;
184 AutofillType(autofill::NAME_FIRST),
293 AutofillType(autofill::NAME_FIRST),
297 AutofillType(autofill::EMAIL_ADDRESS),
314 AutofillType(autofill::NAME_FIRST),
319 AutofillType(autofill::NAME_FIRST),
338 AutofillType(autofill::NAME_FULL),
342 AutofillType(autofill::EMAIL_ADDRESS),
346 AutofillType(autofill::ADDRESS_HOME_LINE1),
365 AutofillType(autofill::NAME_FIRST)
    [all...]

Completed in 494 milliseconds

1 2 3