HomeSort by relevance Sort by last modified time
    Searched defs:tts (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/core/java/android/speech/tts/
AbstractSynthesisCallback.java 16 package android.speech.tts;
20 * are private to the TTS service implementation.
PlaybackQueueItem.java 3 package android.speech.tts;
5 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisCallback.java 16 package android.speech.tts;
32 * @return the maximum number of bytes that the TTS engine can pass in a single call of
UtteranceProgressListener.java 3 package android.speech.tts;
SilencePlaybackQueueItem.java 16 package android.speech.tts;
19 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisRequest.java 16 package android.speech.tts;
AudioPlaybackHandler.java 16 package android.speech.tts;
24 private static final String TAG = "TTS.AudioPlaybackHandler";
34 mHandlerThread = new Thread(new MessageLoop(), "TTS.AudioPlaybackThread");
AudioPlaybackQueueItem.java 16 package android.speech.tts;
22 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
26 private static final String TAG = "TTS.AudioQueueItem";
EventLogger.java 16 package android.speech.tts;
FileSynthesisCallback.java 16 package android.speech.tts;
PlaybackSynthesisCallback.java 16 package android.speech.tts;
18 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisPlaybackQueueItem.java 16 package android.speech.tts;
18 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
31 private static final String TAG = "TTS.SynthQueueItem";
BlockingAudioTrack.java 3 package android.speech.tts;
17 private static final String TAG = "TTS.BlockingAudioTrack";
TtsEngines.java 16 package android.speech.tts;
34 import android.speech.tts.TextToSpeech.Engine;
35 import android.speech.tts.TextToSpeech.EngineInfo;
70 * @return the default TTS engine. If the user has set a default, and the engine
82 * if no TTS engines were present in the system image.
115 * Gets a list of all installed TTS engines.
156 * @return an intent that can launch the settings activity for a given tts engine.
188 private static final String XML_TAG_NAME = "tts-engine";
284 * Returns the locale string for a given TTS engine. Attempts to read the
  /cts/tests/src/android/speech/tts/cts/
StubTextToSpeechService.java 16 package android.speech.tts.cts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeech;
22 import android.speech.tts.TextToSpeechService;
26 * TTS engine API.
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableCheckVoiceData.java 17 package com.android.speech.tts;
22 import android.speech.tts.TextToSpeech;
MockableTextToSpeechService.java 17 package com.android.speech.tts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeechService;
TextToSpeechTests.java 17 package com.android.speech.tts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeech;
24 import com.android.speech.tts.MockableTextToSpeechService.IDelegate;
36 private static final String MOCK_ENGINE = "com.android.speech.tts";
37 private static final String MOCK_PACKAGE = "com.android.speech.tts.__testpackage__";
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 16 package android.speech.tts.cts;
19 import android.speech.tts.TextToSpeech;
27 * Tests for {@link android.speech.tts.TextToSpeechService} using StubTextToSpeechService.
TextToSpeechTest.java 16 package android.speech.tts.cts;
19 import android.speech.tts.TextToSpeech;
28 * Tests for {@link android.speech.tts.TextToSpeech}
57 * Ensures at least one language is available for tts
60 // checks if at least one language is available in Tts
TextToSpeechWrapper.java 16 package android.speech.tts.cts;
20 import android.speech.tts.TextToSpeech;
21 import android.speech.tts.TextToSpeech.OnInitListener;
22 import android.speech.tts.TextToSpeech.OnUtteranceCompletedListener;
44 /** maximum time to wait for tts to be initialized */
63 private boolean initTts(TextToSpeech tts) throws InterruptedException {
64 mTts = tts;
105 * Listener for waiting for TTS engine initialization completion.
  /external/svox/pico/compat/src/com/android/tts/compat/
SynthProxy.java 16 package com.android.tts.compat;
18 import android.speech.tts.SynthesisCallback;
19 import android.speech.tts.SynthesisRequest;
25 * TTS library that implements the interface defined in
26 * frameworks/base/include/tts/TtsEngine.h
49 * Constructor; pass the location of the native TTS .so to use.
79 * @return {@link android.speech.tts.TextToSpeech#SUCCESS} or
80 * {@link android.speech.tts.TextToSpeech#ERROR}
92 * Return codes are defined in android.speech.tts.TextToSpeech
CompatTtsService.java 16 package com.android.tts.compat;
20 import android.speech.tts.SynthesisCallback;
21 import android.speech.tts.SynthesisRequest;
22 import android.speech.tts.TextToSpeech;
23 import android.speech.tts.TextToSpeechService;
46 Log.e(TAG, "Invalid TTS Binary: " + soFilename);
57 // to be loaded. By convention, if an engine wants the TTS framework to pass
63 // Note that the TTS framework does not care what this String data is: it is something
  /packages/apps/Settings/src/com/android/settings/tts/
TtsEnginePreference.java 17 package com.android.settings.tts;
26 import android.speech.tts.TextToSpeech.EngineInfo;
37 * Key for the name of the TTS engine passed in to the engine
43 * Key for the label of the TTS engine passed in to the engine
TtsEngineSettingsFragment.java 17 package com.android.settings.tts;
30 import android.speech.tts.TextToSpeech;
31 import android.speech.tts.TtsEngines;
126 Log.e(TAG, "TTS data check failed (available == null).");
189 * so the required TTS files are properly installed.
200 Log.e(TAG, "Failed to install TTS data, no acitivty found for " + intent + ")");

Completed in 146 milliseconds

1 2