HomeSort by relevance Sort by last modified time
    Searched refs:newfile (Results 1 - 9 of 9) sorted by null

  /external/javassist/sample/hotswap/
Test.java 9 File newfile = new File("logging/HelloWorld.class"); local
10 byte[] bytes = new byte[(int)newfile.length()];
11 new FileInputStream(newfile).read(bytes);
17 newfile = new File("HelloWorld.class");
18 bytes = new byte[(int)newfile.length()];
19 new FileInputStream(newfile).read(bytes);
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 63 void remap(const FileEntry *file, const FileEntry *newfile);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 231 const FileEntry *newfile = FileMgr->getFile(newPath); local
232 remap(file, newfile);
242 void FileRemapper::remap(const FileEntry *file, const FileEntry *newfile) {
243 assert(file && newfile);
246 targ = newfile;
247 ToFromMappings[newfile] = file;
  /external/webrtc/src/modules/audio_processing/main/test/process_test/
apmtest.m 319 are_files_equal(newfile, reffile, precision, diffvector)
323 if ~exist(newfile,'file')
324 warning(['Output file ' newfile ' does not exist']);
333 fid = fopen(newfile,'rb');
350 fprintf([newfile ' is bit-exact to reference\n']);
354 warning([newfile ' is empty']);
  /external/e2fsprogs/debugfs/
debugfs.c 1552 ext2_ino_t newfile; local
1629 ext2_ino_t newfile; local
    [all...]
  /external/elfutils/tests/
Makefile.am 25 noinst_PROGRAMS = arextract arsymtest newfile saridx scnnames sectiondump \
34 TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \
Makefile 17 SOURCES = arextract.c arsymtest.c asm-tst1.c asm-tst2.c asm-tst3.c asm-tst4.c asm-tst5.c asm-tst6.c asm-tst7.c asm-tst8.c asm-tst9.c ecp.c get-aranges.c get-files.c get-lines.c get-pubnames.c hash.c msg_tst.c newfile.c newscn.c saridx.c scnnames.c sectiondump.c show-abbrev.c show-die-info.c showptable.c test-nlist.c update1.c update2.c update3.c update4.c
42 newfile$(EXEEXT) saridx$(EXEEXT) scnnames$(EXEEXT) \
136 newfile_SOURCES = newfile.c
137 newfile_OBJECTS = newfile.$(OBJEXT)
186 get-pubnames.c hash.c msg_tst.c newfile.c newscn.c saridx.c \
193 get-lines.c get-pubnames.c hash.c msg_tst.c newfile.c newscn.c \
311 TESTS = run-arextract.sh run-arsymtest.sh newfile test-nlist \
461 newfile$(EXEEXT): $(newfile_OBJECTS) $(newfile_DEPENDENCIES)
462 @rm -f newfile$(EXEEXT)
525 include ./$(DEPDIR)/newfile.P
    [all...]
  /external/elfutils/src/
ld.c 1106 struct usedfiles *newfile = (struct usedfiles *) local
1109 newfile->soname = newfile->fname = newfile->rfname = fname;
1110 newfile->file_type = type;
1111 newfile->extract_rule = ld_state.extract_rule;
1112 newfile->lazyload = ld_state.lazyload;
1113 newfile->status = not_opened;
1115 return newfile;
    [all...]
  /external/llvm/utils/
NewNightlyTest.pl 385 sub CopyFile { #filename, newfile
386 my ($file, $newfile) = @_;
388 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
389 copy($file, $newfile);

Completed in 1366 milliseconds