OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:country_codes
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/components/autofill/core/browser/
autofill_country_unittest.cc
99
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());
autofill_country.h
50
// Fills |
country_codes
| with a list of the available countries' codes.
52
std::vector<std::string>*
country_codes
);
personal_data_manager.cc
787
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
[
all
...]
autofill_country.cc
[
all
...]
Completed in 197 milliseconds