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

  /external/chromium/chrome/browser/autofill/
autofill_field.h 27 const FieldTypeSet& possible_types() const { return possible_types_; } function in class:AutofillField
32 void set_possible_types(const FieldTypeSet& possible_types) {
33 possible_types_ = possible_types;
form_group.h 24 // This method is additive on |possible_types|.
26 FieldTypeSet* possible_types) const = 0;
contact_info.cc 51 FieldTypeSet* possible_types) const {
52 DCHECK(possible_types);
55 possible_types->insert(NAME_FIRST);
58 possible_types->insert(NAME_MIDDLE);
61 possible_types->insert(NAME_LAST);
64 possible_types->insert(NAME_MIDDLE_INITIAL);
67 possible_types->insert(NAME_FULL);
345 FieldTypeSet* possible_types) const {
346 DCHECK(possible_types);
349 possible_types->insert(EMAIL_ADDRESS)
    [all...]
contact_info.h 27 FieldTypeSet* possible_types) const;
107 FieldTypeSet* possible_types) const;
126 FieldTypeSet* possible_types) const;
address.cc 57 FieldTypeSet* possible_types) const {
58 DCHECK(possible_types);
66 possible_types->insert(ADDRESS_HOME_LINE1);
69 possible_types->insert(ADDRESS_HOME_LINE2);
72 possible_types->insert(ADDRESS_HOME_CITY);
75 possible_types->insert(ADDRESS_HOME_STATE);
78 possible_types->insert(ADDRESS_HOME_ZIP);
81 possible_types->insert(ADDRESS_HOME_COUNTRY);
phone_number.cc 54 FieldTypeSet* possible_types) const {
61 possible_types->insert(GetNumberType());
64 possible_types->insert(GetCityCodeType());
67 possible_types->insert(GetCountryCodeType());
70 possible_types->insert(GetCityAndNumberType());
73 possible_types->insert(GetWholeNumberType());
credit_card.cc 159 FieldTypeSet* possible_types) const {
161 possible_types->insert(CREDIT_CARD_NAME);
164 possible_types->insert(CREDIT_CARD_NUMBER);
167 possible_types->insert(CREDIT_CARD_EXP_MONTH);
170 possible_types->insert(CREDIT_CARD_EXP_2_DIGIT_YEAR);
173 possible_types->insert(CREDIT_CARD_EXP_4_DIGIT_YEAR);
address.h 28 FieldTypeSet* possible_types) const;
phone_number.h 27 FieldTypeSet* possible_types) const;
credit_card.h 29 FieldTypeSet* possible_types) const;
autofill_profile.h 48 FieldTypeSet* possible_types) const;
personal_data_manager.h 134 FieldTypeSet* possible_types);
personal_data_manager.cc 590 FieldTypeSet* possible_types) {
593 possible_types->insert(EMPTY_TYPE);
606 profile->GetPossibleFieldTypes(clean_info, possible_types);
617 credit_card->GetPossibleFieldTypes(clean_info, possible_types);
620 if (possible_types->empty())
621 possible_types->insert(UNKNOWN_TYPE);
form_structure.cc 364 const FieldTypeSet& field_types = field->possible_types();
552 FieldTypeSet types = field->possible_types();
587 FieldTypeSet types = field->possible_types();
autofill_profile.cc 218 FieldTypeSet* possible_types) const {
221 (*it)->GetPossibleFieldTypes(text, possible_types);

Completed in 147 milliseconds