/external/clang/include/clang/ARCMigrate/ |
FileRemapper.h | 63 void remap(const FileEntry *file, const FileEntry *newfile);
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_UPLOAD.3 | 60 curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/dir/to/newfile");
|
/frameworks/base/tools/aapt2/link/ |
TableMerger.cpp | 68 FileReference* newFile, FileReference* oldFile) -> bool { 78 newFile->file = f; 113 FileReference* newFile, FileReference* oldFile) -> bool { 122 newFile->file = f;
|
/prebuilts/go/darwin-x86/src/cmd/internal/objfile/ |
elf.go | 20 f, err := elf.NewFile(r)
|
macho.go | 23 f, err := macho.NewFile(r)
|
plan9obj.go | 30 f, err := plan9obj.NewFile(r)
|
/prebuilts/go/darwin-x86/src/debug/plan9obj/ |
file.go | 103 ff, err := NewFile(f) 113 // If the File was created using NewFile directly instead of Open, 133 // NewFile creates a new File for accessing a Plan 9 binary in an underlying reader. 135 func NewFile(r io.ReaderAt) (*File, error) {
|
/prebuilts/go/linux-x86/src/cmd/internal/objfile/ |
elf.go | 20 f, err := elf.NewFile(r)
|
/prebuilts/go/linux-x86/src/debug/plan9obj/ |
file.go | 103 ff, err := NewFile(f) 113 // If the File was created using NewFile directly instead of Open, 133 // NewFile creates a new File for accessing a Plan 9 binary in an underlying reader. 135 func NewFile(r io.ReaderAt) (*File, error) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFixTest.java | 182 IFile newFile = project.getFile(path); 183 assertNotNull(path.toPortableString(), newFile); 187 assertEquals(newFile.getProjectRelativePath(), 197 String newFileContents = AdtPlugin.readFile(newFile);
|
/external/compiler-rt/lib/profile/ |
InstrProfilingFile.c | 87 int NewFile = !__llvm_profile_CurrentFilename || 96 if (NewFile)
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
AbstractTransformTask.java | 192 File newFile = new File(tempFile.getAbsolutePath()); 194 if(!newFile.renameTo(file)){
|
/external/e2fsprogs/debugfs/ |
debugfs.c | 1659 ext2_ino_t newfile; local 1757 ext2_ino_t newfile; local [all...] |
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
ReportAPI.java | 88 String newFile = null; 97 newFile = args[++i]; 107 new ReportAPI(oldFile, newFile, internal).writeReport(outFile, html, internal); 128 ReportAPI(String oldFile, String newFile, boolean internal) { 129 this(APIData.read(oldFile, internal), APIData.read(newFile, internal));
|
/prebuilts/go/darwin-x86/src/os/ |
file_plan9.go | 37 // NewFile returns a new File with the given file descriptor and name. 38 func NewFile(fd uintptr, name string) *File { 131 return NewFile(uintptr(fd), name), nil 420 return NewFile(uintptr(p[0]), "|0"), NewFile(uintptr(p[1]), "|1"), nil
|
file.go | 50 Stdin = NewFile(uintptr(syscall.Stdin), "/dev/stdin") 51 Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout") 52 Stderr = NewFile(uintptr(syscall.Stderr), "/dev/stderr")
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_unix_test.go | 95 cmd.ExtraFiles = []*os.File{os.NewFile(uintptr(fd), name)} 155 writeFile := os.NewFile(uintptr(fds[0]), "child-writes") 156 readFile := os.NewFile(uintptr(fds[1]), "parent-reads") 205 f := os.NewFile(uintptr(gotFds[0]), "fd-from-child") 223 f := os.NewFile(fd, "unix-conn")
|
/prebuilts/go/linux-x86/src/os/ |
file_plan9.go | 37 // NewFile returns a new File with the given file descriptor and name. 38 func NewFile(fd uintptr, name string) *File { 131 return NewFile(uintptr(fd), name), nil 420 return NewFile(uintptr(p[0]), "|0"), NewFile(uintptr(p[1]), "|1"), nil
|
file.go | 50 Stdin = NewFile(uintptr(syscall.Stdin), "/dev/stdin") 51 Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout") 52 Stderr = NewFile(uintptr(syscall.Stderr), "/dev/stderr")
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_unix_test.go | 95 cmd.ExtraFiles = []*os.File{os.NewFile(uintptr(fd), name)} 155 writeFile := os.NewFile(uintptr(fds[0]), "child-writes") 156 readFile := os.NewFile(uintptr(fds[1]), "parent-reads") 205 f := os.NewFile(uintptr(gotFds[0]), "fd-from-child") 223 f := os.NewFile(fd, "unix-conn")
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessor.java | 244 return isClass ? Files.newFile (m_outDir, CLASSES) : Files.newFile (m_outDir, LIB); 251 return Files.newFile (getFullOutDir (pathDir, isClass), file.getPath ());
|
/external/elfutils/ |
.gitignore | 135 /tests/newfile
|
/external/elfutils/tests/ |
newfile.c | 58 char fname[] = "newfile-XXXXXX";
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiCertManagerTest.java | 58 File configFile = mTempFolder.newFile();
|
/packages/apps/Nfc/src/com/android/nfc/beam/ |
BeamTransferManager.java | 529 File newFile = new File(newPath); 531 while (newFile.exists()) { 534 newFile = new File(newPath); 537 return newFile;
|