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

  /external/chromium_org/components/autofill/core/browser/
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...]
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;
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...]
address.h 38 ServerFieldTypeSet* matching_types) const OVERRIDE;
phone_number.cc 145 ServerFieldTypeSet* matching_types) const {
148 FormGroup::GetMatchingTypes(stripped_text, app_locale, matching_types);
158 matching_types->insert(PHONE_HOME_NUMBER);
167 matching_types->insert(PHONE_HOME_WHOLE_NUMBER);
phone_number.h 35 ServerFieldTypeSet* matching_types) const OVERRIDE;
address.cc 202 ServerFieldTypeSet* matching_types) const {
203 FormGroup::GetMatchingTypes(text, app_locale, matching_types);
208 matching_types->insert(ADDRESS_HOME_COUNTRY);
credit_card.h 52 ServerFieldTypeSet* matching_types) const OVERRIDE;
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...]
autofill_profile.h 46 ServerFieldTypeSet* matching_types) const OVERRIDE;
credit_card.cc 399 ServerFieldTypeSet* matching_types) const {
400 FormGroup::GetMatchingTypes(text, app_locale, matching_types);
405 matching_types->insert(CREDIT_CARD_NUMBER);
410 matching_types->insert(CREDIT_CARD_EXP_MONTH);
autofill_profile.cc 275 ServerFieldTypeSet* matching_types) const {
278 (*it)->GetMatchingTypes(text, app_locale, matching_types);
  /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 76 milliseconds