Searched refs:textToSpeak (Results 1 – 1 of 1) sorted by relevance
160 public boolean requestPlay(List<CharSequence> textToSpeak, long requestId) { in requestPlay() argument161 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() argument213 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() argument395 mTextToSpeak = textToSpeak; in SpeechRequest()