HomeSort by relevance Sort by last modified time
    Searched full:outfile (Results 201 - 225 of 943) sorted by null

1 2 3 4 5 6 7 891011>>

  /toolchain/binutils/binutils-2.25/libiberty/
pex-msdos.c 169 char *outfile; local
208 outfile = "";
213 outfile = ms->files[outindex];
220 + strlen (outfile)
229 outfile);
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 472 FILE *outfile; local
484 outfile = open_tmpfile (&comname, "sys$scratch:CMDXXXXXX.COM");
485 if (outfile == 0)
490 fprintf (outfile, "$ assign/user %s sys$input\n", ifile);
497 fprintf (outfile, "$ define sys$error %s\n", efile);
504 fprintf (outfile, "$ define sys$output %s\n", ofile);
523 fwrite (p, 1, q - p, outfile);
524 fputc ('$', outfile);
525 fputc (' ', outfile);
550 fwrite (p, 1, sep - p, outfile);
    [all...]
  /frameworks/native/opengl/tools/glgen2/registry/
reg.py 355 self.outFile = None
394 self.outFile = open(self.genOpts.filename, 'w')
396 self.outFile = sys.stdout
401 self.outFile.flush()
402 if (self.outFile != sys.stdout and self.outFile != sys.stderr):
403 self.outFile.close()
513 write('', file=self.outFile)
522 write('#ifndef', headerSym, file=self.outFile)
523 write('#define', headerSym, '1', file=self.outFile)
    [all...]
  /external/doclava/src/com/google/doclava/
DocFile.java 113 public static void writePage(String docfile, String relative, String outfile, Data hdf) {
116 * System.out.println("docfile='" + docfile + "' relative='" + relative + "'" + "' outfile='" +
117 * outfile + "'");
181 ClearPage.write(hdf, "docpage.cs", outfile);
183 String filename = outfile;
433 PageMetadata.setPageMetadata(docfile, relative, outfile, hdf, Doclava.sTaglist);
437 outfile = outfile.replaceFirst("^intl/", "");
440 ClearPage.write(hdf, "docpage.cs", outfile);
  /external/ImageMagick/PerlMagick/t/
subroutines.pl 484 my( $infile, $outfile, $writeoptions, $ref_8, $ref_16, $ref_32 ) = @_;
518 my $options = 'filename=>"$outfile", ' . "$writeoptions";
527 print "WriteImage $outfile: $status\n";
534 $status=$image->ReadImage("$outfile");
536 print "ReadImage $outfile: $status\n";
551 ($file = $outfile) =~ s/.*://g;
714 my( $infile, $outfile, $writeoptions) = @_;
725 my $options = 'filename=>"$outfile", ' . $writeoptions;
734 print "WriteImage $outfile: $status\n";
741 $status=$image->ReadImage("$outfile");
    [all...]
  /frameworks/native/opengl/tools/glgen2/
glgen.py 132 file=self.outFile)
192 def writeEntries(self, outfile):
196 file=outfile)
199 def writeEnums(self, outfile):
201 print('GL_ENUM(%s,%s)' % (enum[0], enum[1]), file=outfile)
215 file=self.outFile)
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
pobj.go 59 outfile = ""
106 obj.Flagstr("o", "write output to `file`", &outfile)
170 if outfile == "" {
171 outfile = "a.out"
173 outfile += ".exe"
177 libinit() // creates outfile
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
pobj.go 56 outfile = ""
103 obj.Flagstr("o", "write output to `file`", &outfile)
167 if outfile == "" {
168 outfile = "a.out"
170 outfile += ".exe"
174 libinit() // creates outfile
  /prebuilts/go/darwin-x86/src/crypto/cipher/
example_test.go 230 outFile, err := os.OpenFile("decrypted-file", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
234 defer outFile.Close()
238 if _, err := io.Copy(outFile, reader); err != nil {
267 outFile, err := os.OpenFile("encrypted-file", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
271 defer outFile.Close()
273 writer := &cipher.StreamWriter{S: stream, W: outFile}
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
pobj.go 59 outfile = ""
106 obj.Flagstr("o", "write output to `file`", &outfile)
170 if outfile == "" {
171 outfile = "a.out"
173 outfile += ".exe"
177 libinit() // creates outfile
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
pobj.go 56 outfile = ""
103 obj.Flagstr("o", "write output to `file`", &outfile)
167 if outfile == "" {
168 outfile = "a.out"
170 outfile += ".exe"
174 libinit() // creates outfile
  /prebuilts/go/linux-x86/src/crypto/cipher/
example_test.go 230 outFile, err := os.OpenFile("decrypted-file", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
234 defer outFile.Close()
238 if _, err := io.Copy(outFile, reader); err != nil {
267 outFile, err := os.OpenFile("encrypted-file", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
271 defer outFile.Close()
273 writer := &cipher.StreamWriter{S: stream, W: outFile}
  /external/zlib/src/test/
minigzip.c 461 local char outfile[MAX_NAME_LEN]; local
465 if (strlen(file) + strlen(GZ_SUFFIX) >= sizeof(outfile)) {
471 snprintf(outfile, sizeof(outfile), "%s%s", file, GZ_SUFFIX);
473 strcpy(outfile, file);
474 strcat(outfile, GZ_SUFFIX);
482 out = gzopen(outfile, mode);
484 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
500 char *infile, *outfile; local
518 outfile = buf
    [all...]
  /frameworks/base/core/java/android/app/backup/
FullBackup.java 136 * @param outFile Location within the filesystem to place the data. This must point
141 long size, int type, long mode, long mtime, File outFile) throws IOException {
146 if (outFile != null) outFile.mkdirs();
152 if (outFile != null) {
153 File parent = outFile.getParentFile();
161 out = new FileOutputStream(outFile);
164 Log.e(TAG, "Unable to create/open file " + outFile.getPath(), e);
184 Log.e(TAG, "Unable to write to file " + outFile.getPath(), e);
187 outFile.delete()
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
util.py 74 with open(cli.outfilename, 'wb') as outfile:
75 outfile.write(out_data)
  /external/curl/src/
tool_operate.c 381 Curl_safefree(urlnode->outfile);
387 /* save outfile pattern before expansion */
388 if(urlnode->outfile) {
389 outfiles = strdup(urlnode->outfile);
470 char *outfile; local
481 outfile = NULL;
494 outfile = strdup(mlfile->filename);
495 if(!outfile) {
524 outfile = strdup(outfiles);
525 if(!outfile) {
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/index/
IndexGenerator.java 66 File outFile = new File(outDir, "res_index.txt");
67 PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter(outFile)));
  /external/opencv3/modules/core/src/opencl/runtime/generator/
parser_cl.py 11 outfile = open('../../../../include/opencv2/core/opencl/runtime/autogenerated/' + sys.argv[1] + '.hpp', 'wb') variable
110 sys.stdout = outfile
  /external/opencv3/modules/viz/src/vtk/
vtkXYZWriter.cpp 81 ostream &outfile = *outfilep; local
87 outfile << std::setprecision(this->DecimalPrecision) << p[0] << " " << p[1] << " " << p[2] << std::endl;
  /external/pdfium/testing/tools/
fixup_pdf_template.py 78 with open(output_path, 'wb') as outfile:
80 outfile.write(processor.process_line(line))
run_javascript_tests.py 32 with open(txt_path, 'w') as outfile:
37 subprocess.check_call(cmd_to_run, stdout=outfile)
  /external/smali/baksmali/
build.gradle 85 def outFile = fatJar.destinationDir.getPath() + '/' + fatJar.baseName + '-' + fatJar.version + '-small' + '.' + fatJar.extension
88 outjars outFile
  /external/vboot_reference/futility/
cmd_gbb_utility.c 354 char *outfile = NULL; local
389 outfile = optarg;
512 if (!outfile)
513 outfile = (argc - optind < 1) ? infile : argv[optind++];
604 outfile, outbuf, filesize);
609 if (!outfile) {
616 outfile = argv[optind++];
629 outfile, outbuf, filesize);
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 36 FileWriter outFile = new FileWriter(upload);
37 BufferedWriter out = new BufferedWriter(outFile);
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
ShotToShotLatency.java 123 File outFile = new File(CAMERA_TEST_OUTPUT_FILE);
126 output = new BufferedWriter(new FileWriter(outFile, true));

Completed in 1335 milliseconds

1 2 3 4 5 6 7 891011>>