Searched refs:AddClassification (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Daddress_field.cc116 return AddClassification(company_, COMPANY_NAME, map) &&
117 AddClassification(address1_, ADDRESS_HOME_LINE1, map) &&
118 AddClassification(address2_, ADDRESS_HOME_LINE2, map) &&
119 AddClassification(street_address_, ADDRESS_HOME_STREET_ADDRESS, map) &&
120 AddClassification(city_, ADDRESS_HOME_CITY, map) &&
121 AddClassification(state_, ADDRESS_HOME_STATE, map) &&
122 AddClassification(zip_, ADDRESS_HOME_ZIP, map) &&
123 AddClassification(country_, ADDRESS_HOME_COUNTRY, map);
H A Demail_field.cc29 return AddClassification(field_, EMAIL_ADDRESS, map);
H A Dcredit_card_field.cc242 ok = ok && AddClassification(numbers_[index], CREDIT_CARD_NUMBER, map);
245 ok = ok && AddClassification(type_, CREDIT_CARD_TYPE, map);
247 AddClassification(verification_, CREDIT_CARD_VERIFICATION_CODE, map);
254 ok = ok && AddClassification(cardholder_, CREDIT_CARD_NAME, map);
258 ok && AddClassification(expiration_date_, GetExpirationYearType(), map);
260 ok = ok && AddClassification(expiration_month_, CREDIT_CARD_EXP_MONTH, map);
262 ok && AddClassification(expiration_year_, GetExpirationYearType(), map);
H A Dname_field.cc98 return AddClassification(field_, NAME_FULL, map);
211 bool ok = AddClassification(first_name_, NAME_FIRST, map);
212 ok = ok && AddClassification(last_name_, NAME_LAST, map);
214 ok = ok && AddClassification(middle_name_, type, map);
H A Dphone_field.cc208 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],
H A Dform_field.h79 static bool AddClassification(const AutofillField* field,
H A Dform_field.cc100 bool FormField::AddClassification(const AutofillField* field, function in class:autofill::FormField

Completed in 1467 milliseconds