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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/icu/source/tools/gendraft/
genheaders.pl 104 ($infile,$outfile,$destDir, $symbolAppend, $symbolDef, $exclude) = @_;
106 my $outFileName = $outfile;
107 $headerDef = getHeaderDef($outfile);
109 $outfile = $destDir."/".$outfile;
113 $outFH = IO::File->new($outfile,"w")
114 or die "could not open the file $outfile for writing: $! \n";
116 #print "$headerDef>>> $outfile\n";
  /external/icu4c/tools/gendraft/
genheaders.pl 104 ($infile,$outfile,$destDir, $symbolAppend, $symbolDef, $exclude) = @_;
106 my $outFileName = $outfile;
107 $headerDef = getHeaderDef($outfile);
109 $outfile = $destDir."/".$outfile;
113 $outFH = IO::File->new($outfile,"w")
114 or die "could not open the file $outfile for writing: $! \n";
116 #print "$headerDef>>> $outfile\n";
  /external/linux-tools-perf/util/
trace-event-scripting.c 65 static int python_generate_script_unsupported(const char *outfile __unused)
126 static int perl_generate_script_unsupported(const char *outfile __unused)
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 76 static int outFile;
228 error = write(outFile,data,chunkSize);
253 // return write(outFile,&pt,sizeof(yaffs_PackedTags2));
254 return write(outFile,spare, spareSize);
611 outFile = open(image,O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE);
614 if(outFile < 0)
661 close(outFile);
677 close(outFile);
  /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/Camera/tests/src/com/android/camera/stress/
ShotToShotLatency.java 124 File outFile = new File(CAMERA_TEST_OUTPUT_FILE);
127 output = new BufferedWriter(new FileWriter(outFile, true));
  /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));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 43 infiles=1, outfile='', func='func', args=())
50 cmd.make_file(infiles='in', outfile='out', func='func', args=())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
rot_13.py 113 def rot13(infile, outfile):
114 outfile.write(infile.read().encode('rot-13'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 43 infiles=1, outfile='', func='func', args=())
50 cmd.make_file(infiles='in', outfile='out', func='func', args=())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
rot_13.py 113 def rot13(infile, outfile):
114 outfile.write(infile.read().encode('rot-13'))
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 101 File outFile = new File(tFile);
102 System.out.println("outfile:" + outFile);
107 OutputStream os = new FileOutputStream(outFile);
  /external/checkpolicy/
checkmodule.c 164 char *file = txtfile, *outfile = NULL; local
185 outfile = optarg;
294 if (outfile &&
295 write_binary_policy(&modpolicydb, outfile, argv[0]) == -1) {
  /external/chromium_org/third_party/openssl/openssl/apps/
CA.sh 34 outfile=$2
42 echo $line >>$outfile
45 echo $line >>$outfile
51 echo $line >$outfile
  /external/e2fsprogs/lib/ss/
mk_cmds.sh.in 52 | ${AWK} -f "${DIR}/ct_c.awk" "rootname=${ROOT}" "outfile=${TMP}" -
  /external/emma/core/res/com/vladium/emma/
run_usage.res 36 'out', 'outfile':
  /external/openssl/apps/
CA.sh 34 outfile=$2
42 echo $line >>$outfile
45 echo $line >>$outfile
51 echo $line >$outfile
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
bitcode_wrapperer.h 53 BitcodeWrapperer(WrapperInput* infile, WrapperOutput* outfile);
72 // outfile. Return true on success.
153 // Copies size bytes of infile to outfile, using the buffer.
159 // Discards the old outfile and replaces it with the given file.
  /external/chromium_org/ppapi/
generate_ppapi_include_tests.py 89 outfile = open(filename, 'w')
91 outfile.write(line)
92 outfile.write('\n')
  /external/chromium_org/third_party/lcov/contrib/galaxy/
conglomerate_functions.pl 190 open (OUTFILE, ">$Filename")
192 print (OUTFILE @_);
193 close (OUTFILE);
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 45 char *inFile, *outFile;
95 outFile = argv[argc-1];
96 fout = fopen(outFile, "wb+");
  /external/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 38 final File outFile, final boolean merge)
54 DataFactory.persist (cdataView, outFile, merge);
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
  /external/ipsec-tools/src/racoon/
plainrsa-gen.8 46 .Op Fl f Ar outfile
79 .It Fl f Ar outfile
80 .Ar outfile
  /external/smali/smali/
build.gradle 137 def outFile = jar.destinationDir.getPath() + '/' + jar.baseName + '-' + jar.version + '-small' + '.' + jar.extension
139 outputs.file outFile
144 args "-outjars ${outFile}"
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 39 FileOutputStream outFile = new FileOutputStream("/tmp/foo.zip");
40 outFile.write(zipData, 0, zipData.length);
41 outFile.close();

Completed in 1101 milliseconds

1 2 3 4 5 6 78 91011>>