Searched refs:country_codes (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Dautofill_country_unittest.cc99 std::vector<std::string> country_codes; local
100 AutofillCountry::GetAvailableCountries(&country_codes);
101 for (size_t i = 0; i < country_codes.size(); ++i) {
102 SCOPED_TRACE("Country code '" + country_codes[i] + "' should have a name.");
103 EXPECT_NE(ASCIIToUTF16(country_codes[i]),
104 AutofillCountry(country_codes[i], "en").name());
H A Dautofill_country.h50 // Fills |country_codes| with a list of the available countries' codes.
52 std::vector<std::string>* country_codes);
H A Dpersonal_data_manager.cc787 std::list<std::string> country_codes; local
789 country_codes.push_back(base::StringToLowerASCII(base::UTF16ToASCII(
795 country_codes.push_back(base::StringToLowerASCII(timezone_country));
798 if (country_codes.empty()) {
799 country_codes.push_back(base::StringToLowerASCII(
803 return std::find(country_codes.begin(), country_codes.end(),
805 country_codes.end();
1070 std::vector<std::string> country_codes; local
1071 AutofillCountry::GetAvailableCountries(&country_codes);
[all...]
H A Dautofill_country.cc1069 std::vector<std::string>* country_codes) {
1070 DCHECK(country_codes);
1075 country_codes->push_back(it->first);
1068 GetAvailableCountries( std::vector<std::string>* country_codes) argument

Completed in 63 milliseconds