/external/chromium_org/components/autofill/core/browser/ |
phone_number_unittest.cc | 24 ServerFieldTypeSet matching_types; local 25 phone_number.GetMatchingTypes(base::string16(), "US", &matching_types); local 26 EXPECT_EQ(1U, matching_types.size()); 27 EXPECT_TRUE(matching_types.find(EMPTY_TYPE) != matching_types.end()); 28 matching_types.clear(); 29 phone_number.GetMatchingTypes(ASCIIToUTF16("1"), "US", &matching_types); 30 EXPECT_EQ(1U, matching_types.size()); 31 EXPECT_TRUE(matching_types.find(PHONE_HOME_COUNTRY_CODE) != 32 matching_types.end()) [all...] |
form_group.cc | 13 ServerFieldTypeSet* matching_types) const { 15 matching_types->insert(EMPTY_TYPE); 24 matching_types->insert(*type);
|
form_group.h | 25 // additive on |matching_types|. 28 ServerFieldTypeSet* matching_types) const;
|
phone_number.cc | 151 ServerFieldTypeSet* matching_types) const { 154 FormGroup::GetMatchingTypes(stripped_text, app_locale, matching_types); 164 matching_types->insert(PHONE_HOME_NUMBER); 173 matching_types->insert(PHONE_HOME_WHOLE_NUMBER);
|
address_unittest.cc | 126 ServerFieldTypeSet matching_types; local 128 &matching_types); local 129 ASSERT_EQ(1U, matching_types.size()); 130 EXPECT_EQ(ADDRESS_HOME_COUNTRY, *matching_types.begin()); 138 ServerFieldTypeSet matching_types; local 140 &matching_types); local 141 EXPECT_EQ(0U, matching_types.size()); 147 ServerFieldTypeSet matching_types; local 148 address.GetMatchingTypes(ASCIIToUTF16("Garbage"), "US", &matching_types); 149 EXPECT_EQ(0U, matching_types.size()) [all...] |
address.h | 38 ServerFieldTypeSet* matching_types) const OVERRIDE;
|
address.cc | 189 ServerFieldTypeSet* matching_types) const { 190 FormGroup::GetMatchingTypes(text, app_locale, matching_types); 195 matching_types->insert(ADDRESS_HOME_COUNTRY);
|
phone_number.h | 35 ServerFieldTypeSet* matching_types) const OVERRIDE;
|
autofill_manager.cc | 139 ServerFieldTypeSet matching_types; local 143 matching_types.insert(autofill::PASSWORD); 149 it->GetMatchingTypes(value, app_locale, &matching_types); 153 it->GetMatchingTypes(value, app_locale, &matching_types); 157 if (matching_types.empty()) 158 matching_types.insert(UNKNOWN_TYPE); 160 field->set_possible_types(matching_types); [all...] |
credit_card.cc | 412 ServerFieldTypeSet* matching_types) const { 413 FormGroup::GetMatchingTypes(text, app_locale, matching_types); 418 matching_types->insert(CREDIT_CARD_NUMBER); 423 matching_types->insert(CREDIT_CARD_EXP_MONTH);
|
credit_card.h | 52 ServerFieldTypeSet* matching_types) const OVERRIDE;
|
autofill_profile.h | 46 ServerFieldTypeSet* matching_types) const OVERRIDE;
|
autofill_profile.cc | 269 ServerFieldTypeSet* matching_types) const { 272 (*it)->GetMatchingTypes(text, app_locale, matching_types);
|