Home
last modified time | relevance | path

Searched refs:storable_type (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
Dphone_number.cc96 ServerFieldType storable_type = type.GetStorableType(); in GetInfo() local
102 if (storable_type != PHONE_HOME_WHOLE_NUMBER && in GetInfo()
106 switch (storable_type) { in GetInfo()
192 ServerFieldType storable_type = type.GetStorableType(); in SetInfo() local
193 if (storable_type == PHONE_HOME_COUNTRY_CODE) { in SetInfo()
198 if (storable_type == PHONE_HOME_CITY_CODE) { in SetInfo()
203 if (storable_type == PHONE_HOME_CITY_AND_NUMBER) { in SetInfo()
208 if (storable_type == PHONE_HOME_WHOLE_NUMBER) { in SetInfo()
213 if (storable_type == PHONE_HOME_NUMBER) { in SetInfo()
Daddress.cc146 ServerFieldType storable_type = type.GetStorableType(); in GetInfo() local
147 if (storable_type == ADDRESS_HOME_COUNTRY && !country_code_.empty()) in GetInfo()
150 return GetRawInfo(storable_type); in GetInfo()
169 ServerFieldType storable_type = type.GetStorableType(); in SetInfo() local
170 if (storable_type == ADDRESS_HOME_COUNTRY && !value.empty()) { in SetInfo()
175 SetRawInfo(storable_type, value); in SetInfo()
180 if (storable_type == ADDRESS_HOME_STREET_ADDRESS && in SetInfo()
Dcredit_card.cc376 ServerFieldType storable_type = type.GetStorableType(); in GetInfo() local
377 if (storable_type == CREDIT_CARD_NUMBER) in GetInfo()
380 return GetRawInfo(storable_type); in GetInfo()
386 ServerFieldType storable_type = type.GetStorableType(); in SetInfo() local
387 if (storable_type == CREDIT_CARD_NUMBER) in SetInfo()
388 SetRawInfo(storable_type, StripSeparators(value)); in SetInfo()
389 else if (storable_type == CREDIT_CARD_EXP_MONTH) in SetInfo()
392 SetRawInfo(storable_type, value); in SetInfo()
Dautofill_field.cc324 ServerFieldType storable_type = type.GetStorableType(); in FillSelectControl() local
325 if (storable_type == ADDRESS_HOME_STATE) { in FillSelectControl()
327 } else if (storable_type == ADDRESS_HOME_COUNTRY) { in FillSelectControl()
329 } else if (storable_type == CREDIT_CARD_EXP_MONTH) { in FillSelectControl()
331 } else if (storable_type == CREDIT_CARD_EXP_2_DIGIT_YEAR || in FillSelectControl()
332 storable_type == CREDIT_CARD_EXP_4_DIGIT_YEAR) { in FillSelectControl()
334 } else if (storable_type == CREDIT_CARD_TYPE) { in FillSelectControl()
Dautofill_profile.cc46 ServerFieldType storable_type = AutofillType(type).GetStorableType(); in GetStorableTypeCollapsingNames() local
47 if (AutofillType(storable_type).group() == NAME) in GetStorableTypeCollapsingNames()
50 return storable_type; in GetStorableTypeCollapsingNames()