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

<<11121314151617181920>>

  /external/valgrind/main/VEX/switchback/
binary_switchback.pl 259 open(OUTFILE, ">.filtered_output.$n");
260 print OUTFILE join("\n",@newlines);
261 close(OUTFILE);
  /frameworks/base/docs/html/tools/debugging/
debugging-tracing.jd 217 dmtracedump [-ho] [-s sortable] [-d trace-base-name] [-g outfile] &lt;trace-base-name&gt;
237 <td><code>-g&nbsp;&lt;outfile&gt;</code></td>
239 <td>Generate output to &lt;outfile&gt;</td>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 338 outfile = self.get_module_outfile(self.build_lib, package, module)
339 dir = os.path.dirname(outfile)
341 return self.copy_file(module_file, outfile, preserve_mode=0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 338 outfile = self.get_module_outfile(self.build_lib, package, module)
339 dir = os.path.dirname(outfile)
341 return self.copy_file(module_file, outfile, preserve_mode=0)
  /external/chromium_org/third_party/openssl/openssl/apps/
x509.c 184 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL; local
318 outfile= *(++argv);
682 if (outfile == NULL)
694 if (BIO_write_filename(out,outfile) <= 0)
696 perror(outfile);
1073 BIO_printf(bio_err,"bad output format specified for outfile\n");
    [all...]
  /external/openssl/apps/
x509.c 184 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL; local
318 outfile= *(++argv);
682 if (outfile == NULL)
694 if (BIO_write_filename(out,outfile) <= 0)
696 perror(outfile);
1073 BIO_printf(bio_err,"bad output format specified for outfile\n");
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
EncodeDecodeTest.cc 313 std::string fileName = webrtc::test::OutputPath() + "outFile.rtp";
336 std::string fileName = webrtc::test::OutputPath() + "outFile.rtp";
  /external/llvm/tools/bugpoint/
ToolRunner.h 126 std::string &OutFile, std::string &Error,
193 std::string &OutFile, std::string &Error,
  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 57 BitcodeWrapperer::BitcodeWrapperer(WrapperInput* infile, WrapperOutput* outfile)
59 outfile_(outfile),
  /frameworks/support/tests/java/android/support/v4/content/
FileProviderTest.java 160 File outFile = new File(mContext.getFilesDir(), "/foo/bar");
165 assertEquals(outFile.getPath(),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/man/man1/
x86_64-w64-mingw32-nlmconv.1 
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 140 File outFile = m_settings.getOutFile ();
141 if (outFile == null)
143 outFile = new File ("index".concat (FILE_EXTENSION));
144 m_settings.setOutFile (outFile);
147 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
327 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)));
329 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true);
444 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)));
446 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true);
619 final File outFile = getItemFile (NESTED_ITEMS_PARENT_DIR, m_reportIDNamespace.getID (getItemKey (item)))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 293 Uri getInstallablePackage(int fileResId, File outFile) {
301 FileUtils.setPermissions(outFile.getPath(),
304 assertTrue(FileUtils.copyToFile(is, outFile));
305 FileUtils.setPermissions(outFile.getPath(),
308 return Uri.fromFile(outFile);
700 File outFile = new File(filesDir, outFileName);
701 Uri packageURI = getInstallablePackage(rawResId, outFile);
    [all...]
  /external/chromium_org/base/
file_util_posix.cc 869 int outfile = HANDLE_EINTR(creat(to_path.value().c_str(), 0666)); local
870 if (outfile < 0) {
891 outfile,
904 if (IGNORE_EINTR(close(outfile)) < 0)
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa_unittest.py 742 outfile = make_dafsa.to_cxx(bytes)
744 outfile)
751 outfile = make_dafsa.to_cxx(bytes)
753 outfile)
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
vp8cx_set_ref.c 63 fprintf(stderr, "Usage: %s <width> <height> <infile> <outfile> <frame>\n",
  /external/chromium_org/third_party/mesa/src/src/mesa/
Makefile.am 84 $(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $<
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testLib.c 36 * exefile_name.exe <infile> <bytefile> <outfile>
  /external/chromium_org/tools/code_coverage/
croc.py 413 def PrintStat(self, stat, format=None, outfile=sys.stdout, **kwargs):
421 outfile: File stream to output stat to; defaults to stdout.
426 outfile.write('GetStat(%r) = %s\n' % (stat, s))
428 outfile.write(format % s + '\n')
croc_test.py 484 c.PrintStat('count_b', outfile=f)
486 c.PrintStat('count_a', format='Count A = %05d', outfile=f)
488 c.PrintStat('count_a', group='tests', outfile=f)
489 c.PrintStat('nosuch', default=42, outfile=f)
  /external/clang/docs/tools/
Makefile 70 --podpath=. --infile=$< --outfile=$@ --title=$*
  /external/clang/lib/Frontend/
FrontendActions.cpp 527 std::unique_ptr<llvm::raw_fd_ostream> OutFile;
531 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str().c_str(),
534 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
  /external/emma/ant/ant14/com/vladium/emma/data/
mergeTask.java 53 // mergefile|tofile|outfile|file attribute:
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
DateFmtPerf.cpp 117 fprintf(stderr, "Usage: %s -x <outfile>.xml\n", argv[0]);
  /external/jpeg/
example.c 91 FILE * outfile; /* target file */ local
114 if ((outfile = fopen(filename, "wb")) == NULL) {
118 jpeg_stdio_dest(&cinfo, outfile);
169 fclose(outfile);

Completed in 1248 milliseconds

<<11121314151617181920>>