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

  /external/chromium_org/components/autofill/core/browser/
address_unittest.cc 128 ServerFieldTypeSet matching_types; local
130 &matching_types); local
131 ASSERT_EQ(1U, matching_types.size());
132 EXPECT_EQ(ADDRESS_HOME_COUNTRY, *matching_types.begin());
140 ServerFieldTypeSet matching_types; local
142 &matching_types); local
143 EXPECT_EQ(0U, matching_types.size());
149 ServerFieldTypeSet matching_types; local
150 address.GetMatchingTypes(ASCIIToUTF16("Garbage"), "US", &matching_types);
151 EXPECT_EQ(0U, matching_types.size())
    [all...]
phone_number_unittest.cc 26 ServerFieldTypeSet matching_types; local
27 phone_number.GetMatchingTypes(base::string16(), "US", &matching_types); local
28 EXPECT_EQ(1U, matching_types.size());
29 EXPECT_TRUE(matching_types.find(EMPTY_TYPE) != matching_types.end());
30 matching_types.clear();
31 phone_number.GetMatchingTypes(ASCIIToUTF16("1"), "US", &matching_types);
32 EXPECT_EQ(1U, matching_types.size());
33 EXPECT_TRUE(matching_types.find(PHONE_HOME_COUNTRY_CODE) !=
34 matching_types.end())
    [all...]
autofill_manager.cc 139 ServerFieldTypeSet matching_types; local
143 matching_types.insert(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...]
  /external/lldb/source/Symbol/
TypeList.cpp 250 collection matching_types; local
328 matching_types.insert (*pos);
331 m_types.swap(matching_types);
344 collection matching_types;
353 matching_types.insert (*pos);
355 m_types.swap(matching_types);

Completed in 110 milliseconds