Home | History | Annotate | Download | only in google

Lines Matching refs:country

78         String country = locale.getCountry();
80 if (!TextUtils.isEmpty(country) && useLangCountryHl(language, country)) {
82 hl.append(country);
85 if (DBG) Log.d(TAG, "language " + language + ", country " + country + " -> hl=" + hl);
90 private static boolean useLangCountryHl(String language, String country) {
91 // lang-country is currently only supported for a small number of locales
93 return "GB".equals(country);
95 return "CN".equals(country) || "TW".equals(country);
97 return "BR".equals(country) || "PT".equals(country);