OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:synthesizetofile
(Results
1 - 8
of
8
) 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
50
int
synthesizeToFile
(in IBinder callingInstance, in String text,
119
* {@link TextToSpeech#
synthesizeToFile
} to select a given feature or features to be
TextToSpeech.java
167
* {@link TextToSpeech#speak} and {@link TextToSpeech#
synthesizeToFile
} to modify
435
* @see TextToSpeech#
synthesizeToFile
(String, HashMap, String)
466
* @see TextToSpeech#
synthesizeToFile
(String, java.util.HashMap, String)
[
all
...]
TextToSpeechService.java
776
public int
synthesizeToFile
(IBinder caller, String text, String filename,
[
all
...]
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java
563
Log.e(TAG, "
synthesizeToFile
did not create file");
606
mTts.
synthesizeToFile
(mSpeakText.getText().toString(), mTtsParams, mSampleFile.getPath());
Completed in 3553 milliseconds