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

1 2 3

  /frameworks/base/core/java/android/speech/tts/
AbstractSynthesisCallback.java 16 package android.speech.tts;
21 * are private to the TTS service implementation.
29 /** If true, request comes from V2 TTS interface */
PlaybackQueueItem.java 3 package android.speech.tts;
5 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
32 * {@link android.speech.tts.TextToSpeech} or
33 * {@link android.speech.tts.TextToSpeech#STOPPED}
SilencePlaybackQueueItem.java 16 package android.speech.tts;
19 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisCallback.java 16 package android.speech.tts;
52 * @return the maximum number of bytes that the TTS engine can pass in a single call of {@link
69 * @return {@link android.speech.tts.TextToSpeech#SUCCESS}, {@link
70 * android.speech.tts.TextToSpeech#ERROR} or {@link android.speech.tts.TextToSpeech#STOPPED}.
88 * @return {@link android.speech.tts.TextToSpeech#SUCCESS}, {@link
89 * android.speech.tts.TextToSpeech#ERROR} or {@link android.speech.tts.TextToSpeech#STOPPED}.
102 * @return {@link android.speech.tts.TextToSpeech#SUCCESS}, {@link
103 * android.speech.tts.TextToSpeech#ERROR} or {@link android.speech.tts.TextToSpeech#STOPPED}
    [all...]
UtteranceProgressListener.java 3 package android.speech.tts;
79 * Called when the TTS engine begins to synthesize the audio for a request.
87 * This is called when the TTS engine starts synthesizing audio for the request. If an
125 * This is called when the TTS service is about to speak the specified range of the utterance
EventLogger.java 16 package android.speech.tts;
AbstractEventLogger.java 16 package android.speech.tts;
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;
23 import android.speech.tts.TextToSpeechService.AudioOutputParams;
24 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
28 private static final String TAG = "TTS.AudioQueueItem";
PlaybackSynthesisCallback.java 16 package android.speech.tts;
20 import android.speech.tts.TextToSpeechService.AudioOutputParams;
21 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
Voice.java 17 package android.speech.tts;
29 * Characteristics and features of a Text-To-Speech Voice. Each TTS Engine can expose
BlockingAudioTrack.java 3 package android.speech.tts;
7 import android.speech.tts.TextToSpeechService.AudioOutputParams;
18 private static final String TAG = "TTS.BlockingAudioTrack";
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableCheckVoiceData.java 17 package com.android.speech.tts;
22 import android.speech.tts.TextToSpeech;
TtsEnginesTests.java 1 package com.android.speech.tts;
3 import android.speech.tts.TtsEngines;
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;
39 private static final String MOCK_ENGINE = "com.android.speech.tts";
40 private static final String MOCK_PACKAGE = "com.android.speech.tts.__testpackage__";
  /cts/tests/tests/speech/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;
23 import android.speech.tts.TtsEngines;
31 * TTS engine API.
TextToSpeechServiceTest.java 16 package android.speech.tts.cts;
19 import android.speech.tts.TextToSpeech;
29 * Tests for {@link android.speech.tts.TextToSpeechService} using StubTextToSpeechService.
TextToSpeechTest.java 16 package android.speech.tts.cts;
20 import android.speech.tts.TextToSpeech;
29 * Tests for {@link android.speech.tts.TextToSpeech}
44 // It is OK to have no TTS, when audio-out is not supported.
47 fail("FEATURE_AUDIO_OUTPUT is set, but there is no TTS engine");
67 * Ensures at least one language is available for tts
70 // checks if at least one language is available in Tts
  /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;
50 // to be loaded. By convention, if an engine wants the TTS framework to pass
56 // 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;
23 import android.speech.tts.TextToSpeech.EngineInfo;
TtsEnginePreferenceFragment.java 1 package com.android.settings.tts;
3 import android.speech.tts.TextToSpeech;
9 import android.speech.tts.TtsEngines;
10 import android.speech.tts.TextToSpeech.EngineInfo;
12 import com.android.settings.tts.TtsEnginePreference.RadioButtonGroupState;
40 * The previously selected TTS engine. Useful for rollbacks if the users choice is not loaded or
132 // Step 1: Shut down the existing TTS engine.
133 Log.i(TAG, "Shutting down current tts engine");
139 Log.e(TAG, "Error shutting down TTS engine" + e);
143 // Step 2: Connect to the new TTS engine
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java 38 List<TimeToSampleBox.Entry> tts; field in class:ChangeTimeScaleTrack
54 tts = adjustTts(source.getDecodingTimeEntries(), timeScaleFactor, syncSamples, getTimes(source, syncSamples, targetTimeScale));
88 return tts;

Completed in 350 milliseconds

1 2 3