Home
last modified time | relevance | path

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

/packages/apps/Car/systemlibs/car-assist-client-lib/src/com/android/car/assist/client/tts/
DAndroidTextToSpeechEngine.java61 public int speak(CharSequence text, int queueMode, Bundle params, String utteranceId) in speak() argument
64 return mTextToSpeech.speak(text, queueMode, params, utteranceId); in speak()
DTextToSpeechEngine.java62 int speak(CharSequence text, int queueMode, Bundle params, String utteranceId); in speak() argument
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowTextToSpeech.java98 final int queueMode, in speak() argument
101 return sInstance.speak(text, queueMode, params, utteranceId); in speak()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertAudioTest.java373 ArgumentCaptor<Integer> queueMode = ArgumentCaptor.forClass(Integer.class); in testStartServiceWithTts() local
384 verify(audio.mTts, times(2)).speak(any(), queueMode.capture(), any(), any()); in testStartServiceWithTts()
385 assertEquals(TextToSpeech.QUEUE_FLUSH, queueMode.getAllValues().get(0).intValue()); in testStartServiceWithTts()
386 assertEquals(2, queueMode.getAllValues().get(1).intValue()); in testStartServiceWithTts()