Home | History | Annotate | Download | only in search_engines

Lines Matching refs:country

65   // This ID must be "unique" within one country's prepopulated data, but two
68 // facilitates changes like adding more specific per-country data in the
71 // to appear for one country (e.g. Bing Search U.S. English and Spanish), we
2333 // Lists of engines per country ////////////////////////////////////////////////
2806 // Please refer to ISO 3166-1 for information about the two-character country
2808 // following (C++) code, we pack the two letters of the country code into an int
2880 // Other cases where there is no ISO country code; we assign countries that
2904 CFStringRef country = (CFStringRef)CFLocaleGetValue(locale.get(),
2906 if (!country)
2911 CFStringGetCharacters(country, char_range, isobuf);
2927 // country code, which is what we want.
2951 // See if the user overrode the country on the command line.
2952 const std::string country(
2955 if (country.length() == 2)
2956 return CountryCharsToCountryIDWithUpdate(country[0], country[1]);
2958 // Cache first run Country ID value in prefs, and use it afterwards. This
2986 // If you add a new country make sure to update the unit test for coverage.