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

  /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);
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...]
form_group.h 25 // additive on |matching_types|.
28 ServerFieldTypeSet* matching_types) const;
address.h 38 ServerFieldTypeSet* matching_types) const OVERRIDE;
address.cc 156 ServerFieldTypeSet* matching_types) const {
157 FormGroup::GetMatchingTypes(text, app_locale, matching_types);
162 matching_types->insert(ADDRESS_HOME_COUNTRY);
phone_number.cc 158 ServerFieldTypeSet* matching_types) const {
161 FormGroup::GetMatchingTypes(stripped_text, app_locale, matching_types);
171 matching_types->insert(PHONE_HOME_NUMBER);
180 matching_types->insert(PHONE_HOME_WHOLE_NUMBER);
phone_number.h 35 ServerFieldTypeSet* matching_types) const OVERRIDE;
credit_card.h 52 ServerFieldTypeSet* matching_types) const OVERRIDE;
autofill_profile.h 46 ServerFieldTypeSet* matching_types) const OVERRIDE;
credit_card.cc 397 ServerFieldTypeSet* matching_types) const {
398 FormGroup::GetMatchingTypes(text, app_locale, matching_types);
403 matching_types->insert(CREDIT_CARD_NUMBER);
408 matching_types->insert(CREDIT_CARD_EXP_MONTH);
autofill_manager.cc 153 ServerFieldTypeSet matching_types; local
156 it->GetMatchingTypes(value, app_locale, &matching_types);
160 it->GetMatchingTypes(value, app_locale, &matching_types);
163 if (matching_types.empty())
164 matching_types.insert(UNKNOWN_TYPE);
166 field->set_possible_types(matching_types);
    [all...]
autofill_profile.cc 271 ServerFieldTypeSet* matching_types) const {
274 (*it)->GetMatchingTypes(text, app_locale, matching_types);

Completed in 712 milliseconds