HomeSort by relevance Sort by last modified time
    Searched refs:speak (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/shflags/examples/
debug_output.sh 10 # $ ./debug_output.sh speak
21 speak: say something
47 speak)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTextToSpeechTest.java 49 textToSpeech.speak("Hello", TextToSpeech.QUEUE_FLUSH, null);
55 textToSpeech.speak("Hello", TextToSpeech.QUEUE_FLUSH, null);
56 textToSpeech.speak("Hi", TextToSpeech.QUEUE_FLUSH, null);
62 textToSpeech.speak("Hello", TextToSpeech.QUEUE_FLUSH, null);
80 textToSpeech.speak("Hello", TextToSpeech.QUEUE_ADD, null);
  /packages/apps/Car/Messenger/src/com/android/car/messenger/tts/
TTSEngine.java 31 * @see TextToSpeech#speak(CharSequence, int, Bundle, String)
33 int speak(CharSequence text, int queueMode, Bundle params, String utteranceId); method in interface:TTSEngine
AndroidTTSEngine.java 36 public int speak(CharSequence text, int queueMode, Bundle params, String utteranceId) { method in class:AndroidTTSEngine
37 return mTextToSpeech.speak(text, queueMode, params, utteranceId);
FakeTTSEngine.java 34 public int speak(CharSequence text, int queueMode, Bundle params, String utteranceId) { method in class:FakeTTSEngine
TTSHelper.java 211 if (mTTSEngine.speak(text, TextToSpeech.QUEUE_ADD, null, utteranceId)
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTextToSpeech.java 24 public int speak(final String text, final int queueMode, final HashMap<String, String> params) { method in class:ShadowTextToSpeech
  /external/speex/libspeex/
mdf.c 694 int i,j, chan, speak; local
752 for (speak = 0; speak < K; speak++)
757 st->x[speak*N+i] = st->x[speak*N+i+st->frame_size];
758 tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak])));
772 st->x[speak*N+i+st->frame_size] = EXTRACT16(tmp32);
773 st->memX[speak] = far_end[i*K+speak]
    [all...]
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 89 int result = getTts().speak(UTTERANCE, TextToSpeech.QUEUE_FLUSH, createParams("mockspeak"));
90 assertEquals("speak() failed", TextToSpeech.SUCCESS, result);
91 assertTrue("speak() completion timeout", waitForUtterance("mockspeak"));
105 int result = getTts().speak(UTTERANCE, TextToSpeech.QUEUE_ADD, null,
107 assertEquals("speak() failed", TextToSpeech.SUCCESS, result);
115 assertTrue("speak() stop callback timeout", mTts.waitForStop(
130 // speak(), wait it to starting in the service, and stop().
131 int result = getTts().speak(UTTERANCE, TextToSpeech.QUEUE_ADD, null, "stop");
132 assertEquals("speak() failed", TextToSpeech.SUCCESS, result);
139 assertTrue("speak() stop callback timeout", mTts.waitForStop("stop"))
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
TextToSpeechActivity.java 38 * <li>Call TextToSpeech.speak to synthesize speech.</li>
106 // Allow the user to press the button for the app to speak again.
131 mTts.speak(hello,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
TextToSpeechFacade.java 61 mTts.speak(message, TextToSpeech.QUEUE_ADD, null);
  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechService.aidl 42 int speak(in IBinder callingInstance, in CharSequence text, in int queueMode, in Bundle params,
138 * string array can be passed in as keys to {@link TextToSpeech#speak} and
TextToSpeech.java 230 * Keys for the parameters passed with speak commands, e.g.
236 * {@link TextToSpeech#speak} and {@link TextToSpeech#synthesizeToFile} to modify
496 // keys for the parameters passed with speak commands. Hidden keys are used internally
538 * @see TextToSpeech#speak(String, int, HashMap)
548 * @see TextToSpeech#speak(String, int, HashMap)
559 * @see TextToSpeech#speak(String, int, HashMap)
570 * @see TextToSpeech#speak(String, int, HashMap)
580 * @see TextToSpeech#speak(String, int, HashMap)
591 * @see TextToSpeech#speak(String, int, java.util.HashMap)
609 * @see TextToSpeech#speak(String, int, java.util.HashMap
1101 public int speak(final CharSequence text, method in class:TextToSpeech
    [all...]
TextToSpeechService.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 44 /** The class name of TaskListView - for simplicity we speak only its items. */
65 * putting together a message to speak to the user.
139 mTts.speak(utterance.toString(), TextToSpeech.QUEUE_FLUSH, null);
ClockBackService.java 86 /** Speak. */
230 mTts.speak(utterance, QUEUING_MODE_INTERRUPT, null);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsReceivedDialog.java 73 mTts.speak(mFullBodyString, TextToSpeech.QUEUE_ADD, null);
  /device/google/cuttlefish_common/host/libs/ivserver/
README.md 25 * For QEMU, speak the ivshmem protocol, i.e. pass a vmid, pass the shm fd
31 * For the client, speak the ad-hoc client protocol:
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
TextToSpeechTests.java 193 mTts.speak(speech, TextToSpeech.QUEUE_ADD, null);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertAudio.java 61 /** Extra for message body to speak (if speech enabled in settings). */
128 // if we can speak the message text
159 res = mTts.speak(mMessageBody, 2, params, TTS_UTTERANCE_ID);
163 loge("TTS engine not ready or language not supported or speak() failed");
301 // Get text to speak (if enabled by user)
  /frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java 585 Log.e(TAG, "end speak, volume: "+mOriginalVoiceVolume);
604 Log.e(TAG, "start speak, volume: "+mOriginalVoiceVolume);
622 mTts.speak(mSpeakText.getText().toString(),
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
TextToSpeechFragment.java 431 mTts.speak(mSampleText, TextToSpeech.QUEUE_FLUSH, params);
  /packages/apps/Settings/src/com/android/settings/tts/
TextToSpeechSettings.java 618 mTts.speak(mSampleText, TextToSpeech.QUEUE_FLUSH, params);
  /prebuilts/go/darwin-x86/src/net/http/
client.go 465 // CheckRedirect), or failure to speak HTTP (such as a network
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
mop_test.go 1950 Come I to speak in Caesar's funeral.

Completed in 1904 milliseconds

1 2 3