OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outputFile
(Results
26 - 50
of
141
) sorted by null
1
2
3
4
5
6
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java
82
File
outputFile
= new File(rootDirectory + name);
83
String outputPath =
outputFile
.getCanonicalPath();
90
outputFile
= new File(outputPath, name);
91
outputFile
.createNewFile();
92
out = new FileOutputStream(
outputFile
);
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java
82
File
outputFile
= new File(rootDirectory + name);
83
String outputPath =
outputFile
.getCanonicalPath();
90
outputFile
= new File(outputPath, name);
91
outputFile
.createNewFile();
92
out = new FileOutputStream(
outputFile
);
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java
82
File
outputFile
= new File(rootDirectory + name);
83
String outputPath =
outputFile
.getCanonicalPath();
90
outputFile
= new File(outputPath, name);
91
outputFile
.createNewFile();
92
out = new FileOutputStream(
outputFile
);
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java
82
File
outputFile
= new File(rootDirectory + name);
83
String outputPath =
outputFile
.getCanonicalPath();
90
outputFile
= new File(outputPath, name);
91
outputFile
.createNewFile();
92
out = new FileOutputStream(
outputFile
);
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java
82
File
outputFile
= new File(rootDirectory + name);
83
String outputPath =
outputFile
.getCanonicalPath();
90
outputFile
= new File(outputPath, name);
91
outputFile
.createNewFile();
92
out = new FileOutputStream(
outputFile
);
/external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java
83
File
outputFile
= new File(rootDirectory + name);
84
String outputPath =
outputFile
.getCanonicalPath();
91
outputFile
= new File(outputPath, name);
92
outputFile
.createNewFile();
93
out = new FileOutputStream(
outputFile
);
/external/clang/www/demo/
index.cgi
262
my ( $program, $commandline, $
outputFile
) = @_;
274
if ( -s $
outputFile
) {
275
print scalar dumpFile( "Output from $program", $
outputFile
);
351
my $
outputFile
= getname(".llvm-gcc.out");
359
"stkrc $stats -o $bytecodeFile $inputFile > $
outputFile
2>&1",
360
$
outputFile
);
366
"llvm-gcc -emit-llvm -W -Wall -O2 $stats -o $bytecodeFile -c $inputFile > $
outputFile
2>&1",
367
$
outputFile
);
378
my $
outputFile
= getname(".gccld.out");
385
"llvm-ld $stats -o=$tmpFile $bytecodeFile > $
outputFile
2>&1"
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java
149
File
outputFile
= new File(this.outputDir, fileName+".gif");
150
save(barGraph,
outputFile
);
154
if (
outputFile
.exists()) {
192
private void save(BarGraph barGraph, File
outputFile
) {
202
saveImage(
outputFile
, image);
206
* @param
outputFile
209
private void saveImage(File
outputFile
, Image image) {
217
out = new BufferedOutputStream(new FileOutputStream(
outputFile
));
Utils.java
131
File
outputFile
= new File(output, url.getFile());
132
if (!
outputFile
.getParentFile().exists()) {
133
outputFile
.getParentFile().mkdirs();
135
Util.copyStream(url.openStream(),
outputFile
);
389
* @param
outputFile
392
public static void saveImage(File
outputFile
, Image image) {
400
out = new BufferedOutputStream(new FileOutputStream(
outputFile
));
ScenarioData.java
239
File
outputFile
= new File(outputDir, scenarioFileName+".html");
242
stream = new PrintStream(new BufferedOutputStream(new FileOutputStream(
outputFile
)));
244
System.err.println("can't create output file" +
outputFile
); //$NON-NLS-1$
411
File
outputFile
= createFile(outputDir, "raw", scenarioFileName, "html");
414
stream = new PrintStream(new BufferedOutputStream(new FileOutputStream(
outputFile
)));
416
System.err.println("can't create output file" +
outputFile
); //$NON-NLS-1$
443
private void saveGraph(LineGraph p, File
outputFile
) {
453
out = new BufferedOutputStream(new FileOutputStream(
outputFile
));
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CtsApiCoverage.java
70
File
outputFile
= null;
81
outputFile
= new File(getExpectedArg(args, ++i));
125
outputCoverageReport(apiCoverage, testApks,
outputFile
, format, packageFilter, reportTitle);
184
File
outputFile
, int format, String packageFilter, String reportTitle)
187
OutputStream out =
outputFile
!= null
188
? new FileOutputStream(
outputFile
)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20100503.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestVersionTracker.java
68
private String
outputFile
;
75
tracker.
outputFile
="d:/eclipse-testing/test.properties";
99
writeProperties(
outputFile
, true);
368
return
outputFile
;
375
this.
outputFile
= outputFilePath;
395
return
outputFile
;
398
public void setOutputFile(String
outputFile
) {
399
this.
outputFile
=
outputFile
;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar
/frameworks/base/tools/aapt/
Main.h
38
const android::String8&
outputFile
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryFileDumper.java
254
File
outputFile
= null;
265
outputFile
= new File(tempFileName);
268
outputFile
.delete();
297
bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(
outputFile
));
303
if (!
outputFile
.renameTo(finalFile)) {
319
if (null !=
outputFile
) {
323
outputFile
.delete();
/external/skia/tools/
skdiff_image.cpp
309
SkString
outputFile
;
313
outputFile
= baseLabel;
318
outputFile
= baseLabel;
320
outputFile
.set(baseLabelCstr, tab - baseLabelCstr);
330
create_diff_images(diffProc, colorThreshold, baseFile, comparisonFile, outputDir,
outputFile
,
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerTestApp.java
132
DataOutputStream
outputFile
= null;
149
outputFile
= new DataOutputStream(fileOutput);
150
outputFile
.writeLong(dlRequest);
152
if (
outputFile
!= null) {
153
outputFile
.flush();
154
outputFile
.close();
/external/chromium_org/media/base/android/java/src/org/chromium/media/
WebAudioMediaCodecBridge.java
30
File
outputFile
= File.createTempFile("webaudio", ".dat", outputDirectory);
31
return
outputFile
.getAbsolutePath();
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java
213
String
outputFile
= String.format(
225
processOutput.writeBytes(String.format("%s >> %s\n", command,
outputFile
));
231
Log.d(collectorId, String.format("Bug-Report collected at: %s",
outputFile
));
240
return
outputFile
;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg
35
@
outputFile
.debugPreprocessor() ::= "#define ANTLR_DEBUG"
37
@
outputFile
.imports() ::= <<
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java
358
final File
outputFile
= new File(outputFilename);
362
dictEncoder = new Ver4DictEncoder(
outputFile
);
364
dictEncoder = new Ver3DictEncoder(
outputFile
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceProcessor.java
310
for (IFile
outputFile
: outputFiles) {
311
if (
outputFile
.exists()) {
312
outputFile
.getLocation().toFile().delete();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
buildTools.jar
/packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java
124
* @param
outputFile
The rotated file
128
public static boolean transformJpeg(String inputFilename, File
outputFile
)
156
rotateAndScaleImage(inputFilename, degrees,
outputFile
);
167
* @param
outputFile
The output file
169
private static void rotateAndScaleImage(String inputFilename, int orientation, File
outputFile
)
209
final FileOutputStream fos = new FileOutputStream(
outputFile
);
Completed in 449 milliseconds
1
2
3
4
5
6