OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sampleFile
(Results
1 - 6
of
6
) sorted by null
/cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java
55
File
sampleFile
= new File(Environment.getExternalStorageDirectory(), SAMPLE_FILE_NAME);
57
assertFalse(
sampleFile
.exists());
59
int result = getTts().synthesizeToFile(UTTERANCE, createParams(),
sampleFile
.getPath());
63
assertTrue("synthesizeToFile() didn't produce a file",
sampleFile
.exists());
65
TextToSpeechWrapper.isSoundFile(
sampleFile
.getPath()));
67
sampleFile
.delete();
78
File
sampleFile
= new File(Environment.getExternalStorageDirectory(), "notsound.wav");
80
assertFalse(TextToSpeechWrapper.isSoundFile(
sampleFile
.getPath()));
81
FileOutputStream out = new FileOutputStream(
sampleFile
);
84
assertFalse(TextToSpeechWrapper.isSoundFile(
sampleFile
.getPath()))
[
all
...]
TextToSpeechTest.java
101
File
sampleFile
= new File(Environment.getExternalStorageDirectory(), SAMPLE_FILE_NAME);
103
assertFalse(
sampleFile
.exists());
106
sampleFile
.getPath());
110
assertTrue("synthesizeToFile() didn't produce a file",
sampleFile
.exists());
112
TextToSpeechWrapper.isSoundFile(
sampleFile
.getPath()));
114
sampleFile
.delete();
/libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java
111
File
sampleFile
= createTempHelloWorldFile();
113
URL fileURL =
sampleFile
.toURL();
253
File
sampleFile
= createTempHelloWorldFile();
256
URL fileURL =
sampleFile
.toURL();
280
File
sampleFile
= createTempHelloWorldFile();
283
URL fileURL =
sampleFile
.toURL();
322
File
sampleFile
= createTempHelloWorldFile();
327
u =
sampleFile
.toURL();
419
File
sampleFile
= createTempHelloWorldFile();
422
URL fileURL =
sampleFile
.toURL()
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java
[
all
...]
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java
115
public File
sampleFile
() {
SoundRecorder.java
396
mRecorder.
sampleFile
(), mMaxFileSize);
467
uri = this.addToMediaDB(mRecorder.
sampleFile
());
Completed in 256 milliseconds