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.java1605 List<Voice> voices = service.getVoices();
1606 if (voices == null) {
1610 for (Voice voice : voices) {
1631 List<Voice> voices = service.getVoices();
1632 return (voices != null) ? new HashSet<Voice>(voices) : new HashSet<Voice>();
1713 List<Voice> voices = service.getVoices();
1714 if (voices == null) {
1718 for (Voice voice : voices) {
1761 List<Voice> voices = service.getVoices();
1762 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()