OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:synthesizetofile
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java
59
int result = getTts().
synthesizeToFile
(UTTERANCE, createParams(), sampleFile.getPath());
60
assertEquals("
synthesizeToFile
() failed", TextToSpeech.SUCCESS, result);
62
assertTrue("
synthesizeToFile
() completion timeout", mTts.waitForComplete(UTTERANCE_ID));
63
assertTrue("
synthesizeToFile
() didn't produce a file", sampleFile.exists());
64
assertTrue("
synthesizeToFile
() produced a non-sound file",
TextToSpeechTest.java
90
int result = getTts().
synthesizeToFile
(SAMPLE_TEXT, createParams(),
92
assertEquals("
synthesizeToFile
() failed", TextToSpeech.SUCCESS, result);
94
assertTrue("
synthesizeToFile
() completion timeout", waitForUtterance());
95
assertTrue("
synthesizeToFile
() didn't produce a file", sampleFile.exists());
96
assertTrue("
synthesizeToFile
() produced a non-sound file",
/frameworks/base/core/java/android/speech/tts/
UtteranceProgressListener.java
8
* {@link TextToSpeech#speak} or {@link TextToSpeech#
synthesizeToFile
} with an
18
* of {@link TextToSpeech#
synthesizeToFile
}.
SynthesisRequest.java
34
* and {@link TextToSpeech#
synthesizeToFile
}.
ITextToSpeechService.aidl
133
* {@link TextToSpeech#
synthesizeToFile
} to select a given feature or features to be
TextToSpeech.java
176
* {@link TextToSpeech#speak} and {@link TextToSpeech#
synthesizeToFile
} to modify
485
* @see TextToSpeech#
synthesizeToFile
(String, HashMap, String)
516
* @see TextToSpeech#
synthesizeToFile
(String, java.util.HashMap, String)
528
* @see TextToSpeech#
synthesizeToFile
(String, java.util.HashMap, String)
[
all
...]
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java
568
Log.e(TAG, "
synthesizeToFile
did not create file");
611
mTts.
synthesizeToFile
(mSpeakText.getText().toString(), mTtsParams, mSampleFile.getPath());
Completed in 240 milliseconds