Home
last modified time | relevance | path

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

/packages/apps/Car/libs/car-assist-client-lib/src/com/android/car/assist/client/tts/
DTextToSpeechHelper.java160 public boolean requestPlay(List<CharSequence> textToSpeak, long requestId) { in requestPlay() argument
161 if (textToSpeak.isEmpty()) { in requestPlay()
177 mPendingRequest = new SpeechRequest(textToSpeak, requestId); in requestPlay()
179 playInternal(textToSpeak, requestId); in requestPlay()
200 private void playInternal(List<CharSequence> textToSpeak, long requestId) { in playInternal() argument
213 for (int i = 0; i < textToSpeak.size(); i++) { in playInternal()
214 CharSequence text = textToSpeak.get(i); in playInternal()
231 mListeners.put(mCurrentBatchId, new BatchListener(requestId, textToSpeak.size())); in playInternal()
394 SpeechRequest(List<CharSequence> textToSpeak, long requestId) { in SpeechRequest() argument
395 mTextToSpeak = textToSpeak; in SpeechRequest()