HomeSort by relevance Sort by last modified time
    Searched refs:Rename (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/os/
file.go 81 // LinkError records an error during a link or symlink or rename
262 // Rename renames (moves) oldpath to newpath.
263 // If newpath already exists and is not a directory, Rename replaces it.
266 func Rename(oldpath, newpath string) error {
267 return rename(oldpath, newpath)
os_test.go 768 err = Rename(from, to)
770 t.Fatalf("rename %q, %q failed: %v", to, from, err)
798 err = Rename(from, to)
800 t.Fatalf("rename %q, %q failed: %v", to, from, err)
827 err := Rename(from, to)
830 if err.Op != "rename" {
831 t.Errorf("rename %q, %q: err.Op: want %q, got %q", from, to, "rename", err.Op)
834 t.Errorf("rename %q, %q: err.Old: want %q, got %q", from, to, from, err.Old)
837 t.Errorf("rename %q, %q: err.New: want %q, got %q", from, to, to, err.New
    [all...]
file_unix.go 19 func rename(oldname, newname string) error { func
22 return &LinkError{"rename", oldname, newname, syscall.EEXIST}
24 e := syscall.Rename(oldname, newname)
26 return &LinkError{"rename", oldname, newname, e}
  /prebuilts/go/linux-x86/src/os/
file.go 81 // LinkError records an error during a link or symlink or rename
262 // Rename renames (moves) oldpath to newpath.
263 // If newpath already exists and is not a directory, Rename replaces it.
266 func Rename(oldpath, newpath string) error {
267 return rename(oldpath, newpath)
os_test.go 768 err = Rename(from, to)
770 t.Fatalf("rename %q, %q failed: %v", to, from, err)
798 err = Rename(from, to)
800 t.Fatalf("rename %q, %q failed: %v", to, from, err)
827 err := Rename(from, to)
830 if err.Op != "rename" {
831 t.Errorf("rename %q, %q: err.Op: want %q, got %q", from, to, "rename", err.Op)
834 t.Errorf("rename %q, %q: err.Old: want %q, got %q", from, to, from, err.Old)
837 t.Errorf("rename %q, %q: err.New: want %q, got %q", from, to, to, err.New
    [all...]
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/
syscall_windows.go 134 func Rename(oldpath, newpath string) error {
  /prebuilts/go/linux-x86/src/internal/syscall/windows/
syscall_windows.go 134 func Rename(oldpath, newpath string) error {
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 485 // Rename any conflicting imports
502 // Rename any top-level declarations.
533 // Rename top-level old to new, both unresolved names
570 // Rename any conflicting top-level references from name to name_.
779 // A Rename describes a single renaming.
780 type rename struct { type
781 OldImport string // only apply rename if this import is present
787 func renameFix(tab []rename) func(*ast.File) bool {
808 func renameFixTab(f *ast.File, tab []rename) bool {
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 485 // Rename any conflicting imports
502 // Rename any top-level declarations.
533 // Rename top-level old to new, both unresolved names
570 // Rename any conflicting top-level references from name to name_.
779 // A Rename describes a single renaming.
780 type rename struct { type
781 OldImport string // only apply rename if this import is present
787 func renameFix(tab []rename) func(*ast.File) bool {
808 func renameFixTab(f *ast.File, tab []rename) bool {
  /build/soong/android/
prebuilt.go 74 ctx.Rename(name)
config.go 159 os.Rename(f.Name(), filename)
  /external/curl/packages/vms/
build_gnv_curl_pcsi_desc.com 12 $! 4. Rename the files to lowercase.
30 $! A rename action section is needed to make sure that the files are
152 $! 4. Rename the files to lowercase.
161 $! Read through the file list to set up aliases and rename commands.
307 $! process .dir extensions for rename
315 $! process directory lines for rename.
325 $ line_out = " ""rename pcsi$destination:''pathname' ''filename'.DIR"""
333 $! process file lines for rename
366 $ line_out = " ""rename pcsi$destination:''pathname' ''filename'"""
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data_element_properties.cpp 476 {XFA_Element::Rename, 1, 0},
  /build/blueprint/
module_ctx.go 92 // MutatorContext.Rename
503 rename []rename
512 Rename(name string)
734 // Rename all variants of a module. The new name is not visible to calls to ModuleName,
736 func (mctx *mutatorContext) Rename(name string) {
737 mctx.rename = append(mctx.rename, rename{mctx.module.group, name})
  /external/boringssl/src/util/
make_errors.go 120 os.Rename(headerPath+".tmp", headerPath)
  /prebuilts/go/darwin-x86/src/cmd/go/
clean.go 242 if err2 := os.Rename(f, f+"~"); err2 == nil {
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
gofmt.go 133 os.Rename(bakname, filename)
  /prebuilts/go/linux-x86/src/cmd/go/
clean.go 242 if err2 := os.Rename(f, f+"~"); err2 == nil {
  /prebuilts/go/linux-x86/src/cmd/gofmt/
gofmt.go 133 os.Rename(bakname, filename)
  /external/bison/data/
glr.c     [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 676 Rename,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ole.h 205 OLESTATUS (CALLBACK *Rename) (LPOLEOBJECT, OLE_LPCSTR);
  /build/soong/ui/logger/
logger.go 86 if err := os.Rename(from, newName); err != nil {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_dragonfly.go 165 //sys Rename(from string, to string) (err error)
syscall_freebsd.go 180 //sys Rename(from string, to string) (err error)

Completed in 581 milliseconds

1 2 3 4