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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Camera2/tests_camera/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/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 61 protected static OutputStream getFileOutputStream(final File outFile)
63 return new BufferedOutputStream(new FileOutputStream(outFile));
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
rot_13.py 113 def rot13(infile, outfile):
114 outfile.write(infile.read().encode('rot-13'))
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
rot_13.py 113 def rot13(infile, outfile):
114 outfile.write(infile.read().encode('rot-13'))
  /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/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/selinux/policycoreutils/semodule_package/
semodule_package.8 28 .B \-o \-\-outfile <output file>
  /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.
  /system/extras/verity/
build_verity_metadata.py 60 # write it to the outfile
  /external/autotest/client/site_tests/kernel_LTP/
kernel_LTP.py 65 outfile = os.path.join(self.resultsdir, 'ltp.out')
69 '-o %s' % outfile,
96 parse_ltp_out.summarize(outfile)
  /external/autotest/client/tests/ltp/
ltp.py 73 outfile = os.path.join(self.resultsdir, 'ltp.out')
77 self.tmpdir, outfile,
86 parse_ltp_out.summarize(outfile)
  /external/elfutils/tests/
run-unstrip-n.sh 63 outfile=test-core.out
64 testrun_out $outfile ${abs_top_builddir}/src/unstrip -n -e test-core.exec --core=test-core.core
67 grep -v libc.so.6 $outfile | sort >$outfile2
  /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/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
GdxSetup.java 443 private void writeFile (File outFile, byte[] bytes) {
447 out = new BufferedOutputStream(new FileOutputStream(outFile));
450 throw new RuntimeException("Couldn't write file '" + outFile.getAbsolutePath() + "'", e);
459 private void writeFile (File outFile, String text) {
461 writeFile(outFile, text.getBytes("UTF-8"));
468 File outFile = new File(out, file.outputName);
469 if (!outFile.getParentFile().exists() && !outFile.getParentFile().mkdirs()) {
470 throw new RuntimeException("Couldn't create dir '" + outFile.getAbsolutePath() + "'");
483 writeFile(outFile, txt);
    [all...]
  /external/libopus/celt/
opus_custom_demo.c 45 char *inFile, *outFile;
95 outFile = argv[argc-1];
96 fout = fopen(outFile, "wb+");
  /external/libopus/doc/
trivial_example.c 52 char *outFile;
103 outFile = argv[2];
104 fout = fopen(outFile, "w");
  /external/selinux/policycoreutils/audit2allow/
sepolgen-ifgen 87 outfile = tempfile.NamedTemporaryFile()
96 ret = subprocess.Popen([ATTR_HELPER, policy_path, outfile.name], stdout=fd).wait()
104 attrs.from_file(outfile)
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpFields.java 74 String outFile = "fields.txt";
87 outFile = option.getValue();
117 FileOutputStream outStream = new FileOutputStream(outFile);
DumpVtables.java 72 String outFile = "vtables.txt";
85 outFile = option.getValue();
115 FileOutputStream outStream = new FileOutputStream(outFile);

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 91011>>