Home
last modified time | relevance | path

Searched refs:osnew (Results 1 – 10 of 10) sorted by relevance

/dports/lang/yap/yap-6.2.2/packages/PLStream/
H A Dpl-files.c290 char *osold, *osnew; in RenameFile() local
293 osnew = OsPath(new, newbuf); in RenameFile()
296 return rename(osold, osnew) == 0 ? TRUE : FALSE; in RenameFile()
300 unlink(osnew); in RenameFile()
301 if ( (rval = link(osold, osnew)) == 0 in RenameFile()
303 unlink(osnew); in RenameFile()
/dports/lang/gcc9/gcc-9.4.0/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/lang/gcc10/gcc-10.3.0/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/d/dmd/
H A Ddscope.c644 OverloadSet *osnew = NULL; in deprecation10378() local
646 snew && (osnew = snew->isOverloadSet()) != NULL && in deprecation10378()
647 osold->a.dim == osnew->a.dim) in deprecation10378()
659 if (osnew) in deprecation10378()
660 buf.printf("%s %s (%d overloads)", snew->kind(), snew->toPrettyChars(), (int)osnew->a.dim); in deprecation10378()
/dports/lang/swi-pl/swipl-8.2.3/src/os/
H A Dpl-files.c404 char *osold, *osnew; in RenameFile() local
407 osnew = OsPath(new, newbuf); in RenameFile()
410 return rename(osold, osnew) == 0 ? TRUE : FALSE; in RenameFile()
414 unlink(osnew); in RenameFile()
415 if ( (rval = link(osold, osnew)) == 0 in RenameFile()
417 unlink(osnew); in RenameFile()
/dports/lang/yap/yap-6.2.2/packages/PLStream/uxnt/
H A Duxnt.c644 TCHAR osnew[PATH_MAX]; in _xos_rename() local
647 !_xos_os_filenameW(new, osnew, PATH_MAX) ) in _xos_rename()
650 return _wrename(osold, osnew); in _xos_rename()
/dports/lang/swi-pl/swipl-8.2.3/src/os/windows/
H A Duxnt.c819 TCHAR osnew[PATH_MAX]; in _xos_rename() local
822 !_xos_os_filenameW(new, osnew, PATH_MAX) ) in _xos_rename()
825 if ( MoveFileEx(osold, osnew, MOVEFILE_REPLACE_EXISTING) ) in _xos_rename()