Home
last modified time | relevance | path

Searched refs:voices (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/speech/tts/
DTextToSpeech.java1594 List<Voice> voices = service.getVoices();
1595 if (voices == null) {
1599 for (Voice voice : voices) {
1620 List<Voice> voices = service.getVoices();
1621 return (voices != null) ? new HashSet<Voice>(voices) : new HashSet<Voice>();
1702 List<Voice> voices = service.getVoices();
1703 if (voices == null) {
1707 for (Voice voice : voices) {
1750 List<Voice> voices = service.getVoices();
1751 if (voices == null) {
[all …]
DTextToSpeechService.java280 ArrayList<Voice> voices = new ArrayList<Voice>(); in onGetVoices() local
297 voices.add(new Voice(voiceName, locale, Voice.QUALITY_NORMAL, in onGetVoices()
300 return voices; in onGetVoices()