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

  /external/chromium_org/components/autofill/core/browser/
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...]
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...]
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...]

Completed in 81 milliseconds