HomeSort by relevance Sort by last modified time
    Searched refs:AddClassification (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/components/autofill/core/browser/
credit_card_field.cc 194 bool ok = AddClassification(number_, CREDIT_CARD_NUMBER, map);
195 ok = ok && AddClassification(type_, CREDIT_CARD_TYPE, map);
196 ok = ok && AddClassification(verification_, CREDIT_CARD_VERIFICATION_CODE,
204 ok = ok && AddClassification(cardholder_, CREDIT_CARD_NAME, map);
208 ok = ok && AddClassification(expiration_date_,
211 ok = ok && AddClassification(expiration_date_,
215 ok = ok && AddClassification(expiration_month_, CREDIT_CARD_EXP_MONTH, map);
217 ok = ok && AddClassification(expiration_year_,
221 ok = ok && AddClassification(expiration_year_,
address_field.cc 114 return AddClassification(company_, COMPANY_NAME, map) &&
115 AddClassification(address1_, ADDRESS_HOME_LINE1, map) &&
116 AddClassification(address2_, ADDRESS_HOME_LINE2, map) &&
117 AddClassification(street_address_, ADDRESS_HOME_STREET_ADDRESS, map) &&
118 AddClassification(city_, ADDRESS_HOME_CITY, map) &&
119 AddClassification(state_, ADDRESS_HOME_STATE, map) &&
120 AddClassification(zip_, ADDRESS_HOME_ZIP, map) &&
121 AddClassification(country_, ADDRESS_HOME_COUNTRY, map);
email_field.cc 29 return AddClassification(field_, EMAIL_ADDRESS, map);
name_field.cc 96 return AddClassification(field_, NAME_FULL, map);
210 bool ok = AddClassification(first_name_, NAME_FIRST, map);
211 ok = ok && AddClassification(last_name_, NAME_LAST, map);
213 ok = ok && AddClassification(middle_name_, type, map);
phone_field.cc 208 ok = ok && AddClassification(parsed_phone_fields_[FIELD_COUNTRY_CODE],
215 ok = ok && AddClassification(parsed_phone_fields_[FIELD_AREA_CODE],
225 ok = ok && AddClassification(parsed_phone_fields_[FIELD_PHONE],
231 ok = ok && AddClassification(parsed_phone_fields_[FIELD_SUFFIX],
236 ok = AddClassification(parsed_phone_fields_[FIELD_PHONE],
form_field.h 80 static bool AddClassification(const AutofillField* field,
form_field.cc 100 bool FormField::AddClassification(const AutofillField* field,

Completed in 189 milliseconds