Searched defs:storable_type (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Daddress.cc117 ServerFieldType storable_type = type.GetStorableType(); local
118 if (storable_type == ADDRESS_HOME_COUNTRY && !country_code_.empty())
121 return GetRawInfo(storable_type);
144 ServerFieldType storable_type = type.GetStorableType(); local
145 if (storable_type == ADDRESS_HOME_COUNTRY && !value.empty()) {
150 SetRawInfo(storable_type, value);
H A Dcontact_info.cc79 ServerFieldType storable_type = AutofillType(type).GetStorableType(); local
80 DCHECK_EQ(NAME, AutofillType(storable_type).group());
81 switch (storable_type) {
H A Dautofill_data_model.cc161 ServerFieldType storable_type = type.GetStorableType(); local
162 if (storable_type == ADDRESS_HOME_STATE) {
164 } else if (storable_type == ADDRESS_HOME_COUNTRY) {
166 } else if (storable_type == CREDIT_CARD_EXP_MONTH) {
168 } else if (storable_type == CREDIT_CARD_EXP_4_DIGIT_YEAR) {
174 } else if (storable_type == CREDIT_CARD_TYPE) {
H A Dphone_number.cc109 ServerFieldType storable_type = type.GetStorableType(); local
115 if (storable_type != PHONE_HOME_WHOLE_NUMBER &&
119 switch (storable_type) {
198 ServerFieldType storable_type = type.GetStorableType(); local
199 if (storable_type == PHONE_HOME_COUNTRY_CODE) {
204 if (storable_type == PHONE_HOME_CITY_CODE) {
209 if (storable_type == PHONE_HOME_CITY_AND_NUMBER) {
214 if (storable_type == PHONE_HOME_WHOLE_NUMBER) {
219 if (storable_type == PHONE_HOME_NUMBER) {
H A Dcredit_card.cc374 ServerFieldType storable_type = type.GetStorableType(); local
375 if (storable_type == CREDIT_CARD_NUMBER)
378 return GetRawInfo(storable_type);
384 ServerFieldType storable_type = type.GetStorableType(); local
385 if (storable_type == CREDIT_CARD_NUMBER)
386 SetRawInfo(storable_type, StripSeparators(value));
387 else if (storable_type == CREDIT_CARD_EXP_MONTH)
390 SetRawInfo(storable_type, value);
H A Dautofill_profile.cc36 ServerFieldType storable_type = AutofillType(type).GetStorableType(); local
37 if (AutofillType(storable_type).group() == NAME)
40 return storable_type;
/external/chromium_org/chrome/browser/ui/autofill/
H A Ddata_model_wrapper.cc309 ServerFieldType storable_type = type.GetStorableType(); local
312 if (storable_type == AutofillType(it->first->type).GetStorableType())

Completed in 106 milliseconds