HomeSort by relevance Sort by last modified time
    Searched full:storable_type (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/components/autofill/core/browser/
phone_number.cc 96 ServerFieldType storable_type = type.GetStorableType(); local
102 if (storable_type != PHONE_HOME_WHOLE_NUMBER &&
106 switch (storable_type) {
185 ServerFieldType storable_type = type.GetStorableType(); local
186 if (storable_type == PHONE_HOME_COUNTRY_CODE) {
191 if (storable_type == PHONE_HOME_CITY_CODE) {
196 if (storable_type == PHONE_HOME_CITY_AND_NUMBER) {
201 if (storable_type == PHONE_HOME_WHOLE_NUMBER) {
206 if (storable_type == PHONE_HOME_NUMBER) {
address.cc 146 ServerFieldType storable_type = type.GetStorableType();
147 if (storable_type == ADDRESS_HOME_COUNTRY && !country_code_.empty())
150 return GetRawInfo(storable_type);
169 ServerFieldType storable_type = type.GetStorableType(); local
170 if (storable_type == ADDRESS_HOME_COUNTRY && !value.empty()) {
179 if (storable_type == ADDRESS_HOME_STREET_ADDRESS && !value.empty() &&
185 SetRawInfo(storable_type, value);
190 if (storable_type == ADDRESS_HOME_STREET_ADDRESS &&
autofill_field.cc 245 ServerFieldType storable_type = type.GetStorableType();
246 if (storable_type == ADDRESS_HOME_STATE) {
248 } else if (storable_type == ADDRESS_HOME_COUNTRY) {
250 } else if (storable_type == CREDIT_CARD_EXP_MONTH) {
252 } else if (storable_type == CREDIT_CARD_EXP_2_DIGIT_YEAR ||
253 storable_type == CREDIT_CARD_EXP_4_DIGIT_YEAR) {
255 } else if (storable_type == CREDIT_CARD_TYPE) {
credit_card.cc 376 ServerFieldType storable_type = type.GetStorableType(); local
377 if (storable_type == CREDIT_CARD_NUMBER)
380 return GetRawInfo(storable_type);
386 ServerFieldType storable_type = type.GetStorableType(); local
387 if (storable_type == CREDIT_CARD_NUMBER)
388 SetRawInfo(storable_type, StripSeparators(value));
389 else if (storable_type == CREDIT_CARD_EXP_MONTH)
392 SetRawInfo(storable_type, value);
autofill_profile.cc 41 ServerFieldType storable_type = AutofillType(type).GetStorableType(); local
42 if (AutofillType(storable_type).group() == NAME)
45 return storable_type;

Completed in 217 milliseconds