HomeSort by relevance Sort by last modified time
    Searched full:outfile (Results 76 - 100 of 602) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/
sort-headers.py 74 def SortHeader(infile, outfile):
75 """Sorts the headers in infile, writing the sorted file to outfile."""
89 outfile.write(header)
96 outfile.write(line)
119 outfile = open(fixfilename, 'wb')
120 SortHeader(infile, outfile)
122 outfile.close() # Important so the below diff gets the updated contents.
  /external/doclava/src/com/google/doclava/
DocFile.java 75 public static void writePage(String docfile, String relative, String outfile, Data hdf) {
78 * System.out.println("docfile='" + docfile + "' relative='" + relative + "'" + "' outfile='" +
79 * outfile + "'");
143 ClearPage.write(hdf, "docpage.cs", outfile);
145 String filename = outfile;
180 ClearPage.write(hdf, "sdkpage.cs", outfile);
182 ClearPage.write(hdf, "docpage.cs", outfile);
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 192 const char *outfile,
234 INFO("Opening output file %s\n", outfile);
235 ofd = open(outfile, O_RDWR | O_CREAT, 0664);
237 outfile, strerror(errno), errno);
244 INFO("Truncating output file %s to %d bytes\n", outfile, outsize);
249 INFO("Memory mapping output file %s\n", outfile);
272 char *infile, *outfile, *type; local
279 &outfile,
291 if (!outfile) {
314 INFO("output file: [%s]\n", outfile);
    [all...]
  /external/chromium_org/tools/generate_stubs/
generate_stubs_unittest.py 130 outfile = StringIO.StringIO()
131 gs.WriteWindowsDefFile(module_name, signatures, outfile)
132 contents = outfile.getvalue()
203 outfile = StringIO.StringIO()
204 self.writer.WriteImplementationContents('my_namespace', outfile)
205 contents = outfile.getvalue()
239 outfile = StringIO.StringIO()
241 outfile)
242 contents = outfile.getvalue()
274 outfile = StringIO.StringIO(
    [all...]
  /external/eigen/bench/btl/generic_bench/utils/
xy_file.hh 66 ofstream outfile (filename.c_str(),ios::out) ;
70 outfile << X[i] << " " << Y[i] << endl;
72 outfile.close();
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 49 FILE *infile, *outfile; local
63 if(!(outfile = fopen(argv[2], "wb")))
101 fclose(outfile);
  /external/libvpx/libvpx/
vp9_spatial_scalable_encoder.c 167 static void write_ivf_file_header(FILE *outfile,
187 (void)fwrite(header, 1, 32, outfile);
190 static void write_ivf_frame_header(FILE *outfile, vpx_codec_pts_t pts,
197 (void)fwrite(header, 1, 12, outfile);
301 FILE *infile, *outfile; local
323 if (!(outfile = fopen(app_input.output_filename, "wb")))
331 write_ivf_file_header(outfile, enc_cfg.g_w, enc_cfg.g_h,
353 write_ivf_frame_header(outfile, pts, vpx_svc_get_frame_size(&svc_ctx));
355 vpx_svc_get_frame_size(&svc_ctx), outfile); local
367 if (!fseek(outfile, 0, SEEK_SET))
    [all...]
vp8_multi_resolution_encoder.c 146 static void write_ivf_file_header(FILE *outfile,
167 (void) fwrite(header, 1, 32, outfile);
170 static void write_ivf_frame_header(FILE *outfile,
184 (void) fwrite(header, 1, 12, outfile);
189 FILE *infile, *outfile[NUM_ENCODERS]; local
229 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n",
249 outfile[i] = NULL;
253 if(!(outfile[i] = fopen(argv[i+4], "wb")))
338 if(outfile[i])
339 write_ivf_file_header(outfile[i], &cfg[i], 0)
    [all...]
  /frameworks/base/docs/html/tools/help/
dmtracedump.jd 16 dmtracedump [-ho] [-s sortable] [-d trace-base-name] [-g outfile] &lt;trace-base-name&gt;
36 <td><code>-g&nbsp;<em>&lt;outfile&gt;</em></code></td>
38 <td>Generate output to &lt;outfile&gt;</td>
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java 40 FileOutputStream outFile = new FileOutputStream("/tmp/foo.gz");
41 outFile.write(zipData, 0, zipData.length);
42 outFile.close();
  /external/zlib/src/examples/
gun.c 120 int outfile; member in struct:outd
140 if (me->outfile != -1)
145 ret = (int)write(me->outfile, buf, ret);
191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
201 int outfile, z_stream *strm)
222 outd.outfile = outfile;
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
374 to the output file. If outfile is -1, then the gzip stream(s) integrity is
383 local int gunpipe(z_stream *strm, int infile, int outfile)
551 int infile, outfile; local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
generate_parser.sh 12 flex --noline --nounistd --outfile=$output_source $input_file
  /external/chromium_org/tools/gyp/test/intermediate_dir/src/
test.gyp 16 'outfile.txt',
test2.gyp 16 'outfile.txt',
  /external/emma/core/res/com/vladium/emma/data/
merge_usage.res 7 'out', 'outfile':
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimify.py 18 mimify.py -e [infile [outfile]]
19 mimify.py -d [infile [outfile]]
21 input and outfile to standard output.
207 def unmimify(infile, outfile, decode_base64 = 0):
211 if type(outfile) == type('') and infile == outfile:
217 if type(outfile) == type(''):
218 ofile = open(outfile, 'w')
220 ofile = outfile
415 def mimify(infile, outfile)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimify.py 18 mimify.py -e [infile [outfile]]
19 mimify.py -d [infile [outfile]]
21 input and outfile to standard output.
207 def unmimify(infile, outfile, decode_base64 = 0):
211 if type(outfile) == type('') and infile == outfile:
217 if type(outfile) == type(''):
218 ofile = open(outfile, 'w')
220 ofile = outfile
415 def mimify(infile, outfile)
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 144 * @param outFile
148 public static synchronized void dumpCoverageData (File outFile, final boolean merge, final boolean stopDataCollection)
151 outFile = outFile != null ? outFile : getCoverageOutFile ();
156 RTCoverageDataPersister.dumpCoverageData (cdata, ! stopDataCollection, outFile, merge);
159 public static synchronized void dumpCoverageData (File outFile, final boolean stopDataCollection)
161 outFile = outFile != null ? outFile : getCoverageOutFile ()
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 60 char *outfile; local
63 fprintf(stderr, "Usage: %s <module.in> <Makefile[.am]> <outfile>\n", argv[0]);
67 outfile = argv[3];
171 out = fopen(outfile, "wt");
174 fprintf(stderr, "Could not open `%s'.\n", outfile);
185 remove(outfile);
  /external/eigen/bench/btl/generic_bench/timers/
x86_timer.hh 121 ofstream outfile (filemane.c_str(),ios::out) ;
126 outfile << (*itr).first << " " << (*itr).second << endl ;
129 outfile.close();
135 ofstream outfile (filemane.c_str(),ios::out) ;
141 outfile << i << " "
147 outfile.close();
  /external/jpeg/
makefile.vms 127 $ mcr sys$disk:[]djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
128 $ mcr sys$disk:[]djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
129 $ mcr sys$disk:[]cjpeg -dct int -outfile testout.jpg testimg.ppm
130 $ mcr sys$disk:[]djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
131 $ mcr sys$disk:[]cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
132 $ mcr sys$disk:[]jpegtran -outfile testoutt.jpg testprog.jpg
  /external/qemu/distrib/jpeg-6b/
makefile.vms 127 $ mcr sys$disk:[]djpeg -dct int -ppm -outfile testout.ppm testorig.jpg
128 $ mcr sys$disk:[]djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg
129 $ mcr sys$disk:[]cjpeg -dct int -outfile testout.jpg testimg.ppm
130 $ mcr sys$disk:[]djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
131 $ mcr sys$disk:[]cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
132 $ mcr sys$disk:[]jpegtran -outfile testoutt.jpg testprog.jpg
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 135 FILE *infile, *outfile; local
176 outfile = fopen(outfileName, "wb");
177 if (!outfile) {
249 fwrite(outData.Buffer, 1, outData.Length, outfile);
275 if (outfile)
277 fclose(outfile);
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java 109 File outFile = Environment.buildExternalStorageAppObbDirs(packageName)[0];
110 if (outFile != null) {
111 outFile = new File(outFile, path);
113 // outFile is null here if we couldn't get access to external storage,
117 FullBackup.restoreFile(data, fileSize, type, -1, mtime, outFile);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloadphones.lua 30 local outfile = io.open(arg[2], "wb")
31 if not outfile then
160 if specid[i] == 0 then outfile:write("\0")
161 else outfile:write(string.format("%c", specid[i]))
166 if nr == 0 then outfile:write("\0")
167 else outfile:write(string.format("%c", nr))
175 outfile:close()

Completed in 1097 milliseconds

1 2 34 5 6 7 8 91011>>