HomeSort by relevance Sort by last modified time
    Searched full:outfile (Results 26 - 50 of 704) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/lldb/test/settings/
main.cpp 28 std::ofstream outfile; local
30 outfile.open("output1.txt");
32 outfile.open("output2.txt");
37 outfile << "argv[1] matches\n";
40 outfile << "argv[2] matches\n";
43 outfile << "argv[3] matches\n";
50 outfile << "Environment variable 'MY_ENV_VAR' successfully passed.\n";
59 outfile << "The host environment variable 'MY_HOST_ENV_VAR1' successfully passed.\n";
66 outfile << "The host environment variable 'MY_HOST_ENV_VAR2' successfully passed.\n";
73 outfile.close()
    [all...]
  /external/e2fsprogs/lib/et/
et_h.awk 3 outfn = outfile
128 print "/*" > outfile
129 print " * " outfn ":" > outfile
130 print " * This file is automatically generated; please do not edit it." > outfile
131 print " */" > outfile
132 print "" > outfile
133 print "#include <et/com_err.h>" > outfile
134 print "" > outfile
144 curr_sign*curr_low > outfile
147 curr_low > outfile
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfenc.h 22 void ivf_write_file_header(FILE *outfile,
27 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size);
29 void ivf_write_frame_size(FILE *outfile, size_t frame_size);
  /external/libvpx/libvpx/
ivfenc.h 22 void ivf_write_file_header(FILE *outfile,
27 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size);
29 void ivf_write_frame_size(FILE *outfile, size_t frame_size);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
ivfenc.h 22 void ivf_write_file_header(FILE *outfile,
27 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size);
29 void ivf_write_frame_size(FILE *outfile, size_t frame_size);
  /external/chromium_org/third_party/angle/tests/gles_conformance_tests/
generate_gles_conformance_tests.py 28 def GenerateTests(outFile, testNames):
32 outFile.write("#include \"gles_conformance_tests.h\"\n\n")
35 outFile.write("TEST(" + GetSuiteName(test) + ", " + GetTestName(test) + ")\n")
36 outFile.write("{\n")
37 outFile.write(" RunConformanceTest(\"" + test + "\", GetCurrentConfig());\n")
38 outFile.write("}\n\n")
  /external/chromium_org/tools/gyp/test/sanitize-rule-names/
sanitize-rule-names.gyp 15 'outputs': ['outfile'],
18 'action': ['python', 'script.py', '<(RULE_INPUT_PATH)', 'outfile'],
  /frameworks/base/docs/html/tools/help/
hprof-conv.jd 11 <pre> hprof-conv &lt;infile&gt; &lt;outfile&gt;</pre>
14 You can use "-" for <code>&lt;infile&gt;</code> or <code>&lt;outfile&gt;</code>
  /external/expat/tests/
xmltest.sh 39 $XMLWF -p "$file" > outfile || return $?
40 read outdata < outfile
54 $XMLWF -p -d "$OUTPUT$reldir" "$file" > outfile || return $?
55 read outdata < outfile
58 diff -u "$OUTPUT$reldir$file" "out/$file" > outfile
59 if [ -s outfile ] ; then
60 cp outfile "$OUTPUT$reldir$file.diff"
103 rm outfile
112 rm outfile
131 rm outfile
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
gen_msvs_def.sh 51 echo " $sym" >> ${outfile}
57 printf " %-40s DATA\n" "$sym" >> ${outfile}
67 --out=*) outfile="$optval"
76 outfile=${outfile:-/dev/stdout}
79 echo "LIBRARY ${name}" > ${outfile}
80 echo "EXPORTS" >> ${outfile}
  /external/libvpx/libvpx/build/make/
gen_msvs_def.sh 51 echo " $sym" >> ${outfile}
57 printf " %-40s DATA\n" "$sym" >> ${outfile}
67 --out=*) outfile="$optval"
76 outfile=${outfile:-/dev/stdout}
79 echo "LIBRARY ${name}" > ${outfile}
80 echo "EXPORTS" >> ${outfile}
  /external/srec/tools/grxmlcompile/
netw_dump.cpp 49 std::ofstream outfile; local
57 outfile.open ( fileName.c_str() );
63 outfile << arc[loc]->fromId << std::endl;
66 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << Eps << std::endl;
84 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << std::endl;
90 outfile.close();
107 std::ofstream outfile; local
110 outfile.open ( fileName.c_str() );
172 outfile << arc[loc]->fromId << std::endl;
174 outfile << arc[loc]->fromId << Separator << arc[loc]->toId << Separator << inLabel.c_str() << Separator < (…)
192 std::ofstream outfile; local
272 std::ofstream outfile; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_def.sh 51 echo " $sym" >> ${outfile}
57 printf " %-40s DATA\n" "$sym" >> ${outfile}
67 --out=*) outfile="$optval"
76 outfile=${outfile:-/dev/stdout}
79 echo "LIBRARY ${name}" > ${outfile}
80 echo "EXPORTS" >> ${outfile}
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 117 final File outFile = new File(filesDir, name);
118 return outFile;
121 private void copyRawToFile(int rawResId, File outFile) {
129 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
131 assertTrue(FileUtils.copyToFile(is, outFile));
132 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
215 final File outFile = getFilePath("test1.obb");
217 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.MOUNTED);
219 mountObb(sm, R.raw.test1, outFile, OnObbStateChangeListener.ERROR_ALREADY_MOUNTED);
221 final String mountPath = checkMountedPath(sm, outFile);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPtimeshift.cc 41 FILE *outFile=fopen(argv[2],"wb");
42 if (!outFile)
53 EXPECT_GT(fputs(firstline, outFile), 0);
57 fwrite(firstline, 1, kRtpDumpHeaderSize, outFile));
89 packet.writeToFile(outFile);
96 fclose(outFile);
  /frameworks/base/core/java/android/app/backup/
FullBackup.java 88 * @param outFile Location within the filesystem to place the data. This must point
93 long size, int type, long mode, long mtime, File outFile) throws IOException {
98 if (outFile != null) outFile.mkdirs();
104 if (outFile != null) {
105 File parent = outFile.getParentFile();
111 out = new FileOutputStream(outFile);
114 Log.e(TAG, "Unable to create/open file " + outFile.getPath(), e);
134 Log.e(TAG, "Unable to write to file " + outFile.getPath(), e);
137 outFile.delete()
    [all...]
  /external/chromium_org/tools/gyp/test/actions/src/
confirm-dep-files.py 17 outfile = sys.argv[1] # Example value we expect: deps_all_done_first_123.txt variable
21 open(outfile, "w")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 63 outfile = test_support.TESTFN + '.out'
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
65 self.addCleanup(os.remove, outfile)
66 with open(outfile, "r") as fp:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 63 outfile = test_support.TESTFN + '.out'
64 rc, out, err = assert_python_ok('-m', 'json.tool', infile, outfile)
65 self.addCleanup(os.remove, outfile)
66 with open(outfile, "r") as fp:
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
Isac_test.cc 64 WebRtc_Word8 outFile[40];
113 strcpy(outFile,argv[2]);
121 strcat(outFile,"_");
122 strcat(outFile, argv[4]);
123 strcat(outFile,"_");
124 strcat(outFile, codec);
127 strcat(outFile,"_");
128 strcat(outFile, argv[6]);
131 strcat(outFile,"_");
132 strcat(outFile, "plc")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
CheckedOutputStreamTest.java 35 FileOutputStream outFile = new FileOutputStream(
37 CheckedOutputStream chkOut = new CheckedOutputStream(outFile,
41 outFile.close();
57 FileOutputStream outFile = new FileOutputStream(
59 CheckedOutputStream chkOut = new CheckedOutputStream(outFile,
74 outFile.close();
90 FileOutputStream outFile = new FileOutputStream(
92 CheckedOutputStream chkOut = new CheckedOutputStream(outFile,
100 outFile.close();
115 FileOutputStream outFile = new FileOutputStream
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebugActivity.java 98 File outFile = new File(Environment.getExternalStorageDirectory(), OUT_FILE);
99 outFile.delete();
118 File outFile = new File(path, OUT_FILE);
119 outFile.delete();
120 Log.i(TAG, "Outfile=" + outFile.getAbsolutePath());
125 os = new ZipOutputStream(new FileOutputStream(outFile));
148 outFile.toString()
152 return outFile;
175 protected void onPostExecute(File outFile) {
    [all...]
  /external/libpcap/
runlex.sh 38 outfile=lex.yy.c
47 outfile=`echo "$1" | sed 's/-o\(.*\)/\1/'`
118 ${LEX} $flags -o"$outfile" "$@"
139 # Is the outfile where we think it is?
141 outfile_base=`basename "$outfile"`
142 if [ "$outfile_base" != "$outfile" -a \( ! -r "$outfile" \) -a -r "$outfile_base" ]
148 mv "$outfile_base" "$outfile"
182 mv lex.yy.c "$outfile"
223 header_file=`dirname "$outfile"`/`basename "$outfile" .c`.
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
apmtest.m 99 outfile = ['out'];
111 outfile = ['out'];
121 outfile = ['out'];
146 [nErr, nCases] = recurseDir(inpathtest, outpathtest, refpathtest, outfile, ...
170 outfile, progname, opt, simulateMode, nErr, nCases, task, casenumber, ...
193 fprintf([num2str(nCases) '. ' outfile '\n'])
195 vadoutfile = ['vad_' outfile '.dat'];
196 outfile = [outfile '.pcm'];
242 command = [progname ' -o ' outpath outfile ' ' opt]
    [all...]
  /external/webrtc/src/modules/audio_processing/test/
apmtest.m 99 outfile = ['out'];
111 outfile = ['out'];
121 outfile = ['out'];
146 [nErr, nCases] = recurseDir(inpathtest, outpathtest, refpathtest, outfile, ...
170 outfile, progname, opt, simulateMode, nErr, nCases, task, casenumber, ...
193 fprintf([num2str(nCases) '. ' outfile '\n'])
195 vadoutfile = ['vad_' outfile '.dat'];
196 outfile = [outfile '.pcm'];
242 command = [progname ' -o ' outpath outfile ' ' opt]
    [all...]

Completed in 1359 milliseconds

12 3 4 5 6 7 8 91011>>