Home
last modified time | relevance | path

Searched refs:country (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/speech/src/android/speech/tts/cts/
DStubTextToSpeechService.java56 protected int onIsLanguageAvailable(String lang, String country, String variant) { in onIsLanguageAvailable() argument
57 if (supportedCountries.contains(new Locale(lang, country))) { in onIsLanguageAvailable()
68 protected int onLoadLanguage(String lang, String country, String variant) { in onLoadLanguage() argument
69 return onIsLanguageAvailable(lang, country, variant); in onLoadLanguage()
103 public String onGetDefaultVoiceNameFor(String lang, String country, String variant) { in onGetDefaultVoiceNameFor() argument
104 Locale locale = new Locale(lang, country); in onGetDefaultVoiceNameFor()
109 if (GBFallbacks.contains(new Locale(lang, country))) { in onGetDefaultVoiceNameFor()
115 return super.onGetDefaultVoiceNameFor(lang, country, variant); in onGetDefaultVoiceNameFor()
/cts/tests/tests/util/src/android/util/cts/
DTimeUtilsTest.java91 String country = world[i]; in testWorldWeird() local
99 guess = guessTimeZone(c, country); in testWorldWeird()
104 private static TimeZone guessTimeZone(Calendar c, String country) { in guessTimeZone() argument
108 country); in guessTimeZone()
/cts/tests/tests/view/src/android/view/cts/
DView_UsingViewsTest.java463 private boolean showPicture(String country) { in showPicture() argument
464 if (ARGENTINA.equals(country)) { in showPicture()
467 } else if (AMERICA.equals(country)) { in showPicture()
470 } else if (CHINA.equals(country)) { in showPicture()
481 String country = mEditText.getText().toString(); in onClick() local
482 if (!showPicture(country)) { in onClick()