Home
last modified time | relevance | path

Searched refs:fullPath (Results 1 – 25 of 4380) sorted by relevance

12345678910>>...176

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/src/System/IO/
H A DFileSystem.Windows.cs55 public static void CreateDirectory(string fullPath) in CreateDirectory() argument
63 if (DirectoryExists(fullPath)) in CreateDirectory()
75 int length = fullPath.Length; in CreateDirectory()
109 string errorString = fullPath; in CreateDirectory()
159 public static void DeleteFile(string fullPath) in DeleteFile() argument
275 public static bool FileExists(string fullPath) in FileExists() argument
388 string root = fullPath.Substring(0, PathInternal.GetRootLength(fullPath)); in OpenHandle()
396 fullPath, in OpenHandle()
409 …rrorCode == Interop.Errors.ERROR_PATH_NOT_FOUND && fullPath.Equals(Directory.GetDirectoryRoot(full… in OpenHandle()
421 if (!recursive || IsReparsePoint(fullPath)) in RemoveDirectory()
[all …]
H A DFileSystem.Unix.cs148 public static void DeleteFile(string fullPath) in DeleteFile() argument
150 if (Interop.Sys.Unlink(fullPath) < 0) in DeleteFile()
182 public static void CreateDirectory(string fullPath) in CreateDirectory() argument
186 int length = fullPath.Length; in CreateDirectory()
201 if (DirectoryExists(fullPath)) in CreateDirectory()
247 string errorString = fullPath; in CreateDirectory()
318 var di = new DirectoryInfo(fullPath); in RemoveDirectory()
405 return DirectoryExists(fullPath, out ignored); in DirectoryExists()
413 public static bool FileExists(string fullPath) in FileExists() argument
705 Interop.CheckIo(Interop.Sys.ChDir(fullPath), fullPath, isDirectory:true); in SetCurrentDirectory()
[all …]
/dports/graphics/libpano13/libpano13-2.9.20/
H A DPTcommon.h55 PANO13_IMPEX int panoVerifyTiffsAreCompatible(fullPath *tiffFiles, int filesCount, int optionalChec…
56 PANO13_IMPEX int panoAddStitchingMasks(fullPath *inputFiles, fullPath *outputFiles, int numberImage…
60 PANO13_IMPEX int panoFlattenTIFF(fullPath *fullPathImages, int counterImageFiles, fullPath *outputF…
64 PANO13_IMPEX int panoPSDCreate( fullPath *fullPathImages, int, fullPath*, pano_flattening_parms*);
65 PANO13_IMPEX int panoCreateLayeredPSD( fullPath *fullPathImages, int, fullPath*, pano_flattening_…
67 …NO13_IMPEX int panoCreatePanorama(fullPath ptrImageFileNames[], int counterImageFiles, fullPath *p…
73 PANO13_IMPEX int StringtoFullPath(fullPath *path, char *filename);
74 PANO13_IMPEX void InsertFileName( fullPath *fp, char *fname );
75 PANO13_IMPEX int ApplyFeather(fullPath * inputFile, fullPath * outputFile,
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/viewfs/
H A DChRootedFileSystem.java87 protected Path fullPath(final Path path) { in fullPath() method in ChRootedFileSystem
226 return super.getFileStatus(fullPath(f)); in getFileStatus()
232 super.access(fullPath(path), mode); in access()
237 return super.getStatus(fullPath(p)); in getStatus()
243 return super.listStatus(fullPath(f)); in listStatus()
274 return super.rename(fullPath(src), fullPath(dst)); in rename()
316 super.removeDefaultAcl(fullPath(path)); in removeDefaultAcl()
321 super.removeAcl(fullPath(path)); in removeAcl()
326 super.setAcl(fullPath(path), aclSpec); in setAcl()
347 return super.getXAttrs(fullPath(path)); in getXAttrs()
[all …]
H A DChRootedFs.java87 protected Path fullPath(final Path path) { in fullPath() method in ChRootedFs
202 return myFs.getFileStatus(fullPath(f)); in getFileStatus()
207 myFs.access(fullPath(path), mode); in access()
234 return myFs.listStatus(fullPath(f)); in listStatus()
261 myFs.renameInternal(fullPath(src), fullPath(dst)); in renameInternal()
270 myFs.renameInternal(fullPath(src), fullPath(dst), overwrite); in renameInternal()
313 myFs.removeDefaultAcl(fullPath(path)); in removeDefaultAcl()
318 myFs.removeAcl(fullPath(path)); in removeAcl()
323 myFs.setAcl(fullPath(path), aclSpec); in setAcl()
344 return myFs.getXAttrs(fullPath(path)); in getXAttrs()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Files/
H A DPathName.sc3 var <fullPath, colonIndices;
23 fullPath.do({ | eachChar, i |
31 ^fullPath.copyRange((this.lastColonIndex) + 1, (fullPath.size -1).max(0))
77 ^fullPath.absolutePath
98 ^fullPath
101 ^fullPath.absolutePath
108 pathCopy = fullPath;
137 fullPath ++ "1"
161 var otherFullPath = path.respondsTo(\fullPath).if({ path.fullPath }, { path.asString });
166 var path = fullPath;
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/io/
H A DImageUtils.cxx28 const std::string& fullPath, in WriteImageFile() argument
32 if (EndsWith(fullPath, ".ppm")) in WriteImageFile()
34 writer = std::unique_ptr<vtkm::io::ImageWriterPNM>(new ImageWriterPNM(fullPath)); in WriteImageFile()
38 writer = std::unique_ptr<vtkm::io::ImageWriterPNG>(new ImageWriterPNG(fullPath)); in WriteImageFile()
41 VTKM_LOG_S(vtkm::cont::LogLevel::Info, "Wrote image data at: " << fullPath); in WriteImageFile()
46 std::ifstream check(fullPath.c_str()); in ReadImageFile()
49 throw vtkm::cont::ErrorExecution("File does not exist: " + fullPath); in ReadImageFile()
53 if (EndsWith(fullPath, ".png")) in ReadImageFile()
55 reader = std::unique_ptr<vtkm::io::ImageReaderPNG>(new ImageReaderPNG(fullPath)); in ReadImageFile()
57 else if (EndsWith(fullPath, ".ppm") || EndsWith(fullPath, ".pnm")) in ReadImageFile()
[all …]
/dports/devel/datadraw/datadraw3.1.1/util/
H A Dutnt.c243 char fullPath[UTSTRLEN]; in utFullPath() local
245 _fullpath(fullPath, relativePath, UTSTRLEN); in utFullPath()
246 return utCopyString(fullPath); in utFullPath()
279 char *fullPath; in utExecPath() local
289 fullPathProgram = utGlob(fullPath); in utExecPath()
312fullPath = utSprintf("%s%c%s", fullPath, UTDIRSEP, program); in utExecPath()
314 fullPath = utGlob(fullPath); in utExecPath()
315 if(fullPath != NULL) { in utExecPath()
316 return fullPath; in utExecPath()
318 fullPath = utGlob(utSprintf("%s.exe", fullPath)); in utExecPath()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/odf/
H A DKoOdfManifestEntry.cpp31 QString fullPath; // manifest:full-path member in KoOdfManifestEntry::Private
40 KoOdfManifestEntry::KoOdfManifestEntry(const QString &fullPath, const QString &mediaType, in KoOdfManifestEntry() argument
44 d->fullPath = fullPath; in KoOdfManifestEntry()
52 d->fullPath = other.d->fullPath; in KoOdfManifestEntry()
64 d->fullPath = other.d->fullPath; in operator =()
72 QString KoOdfManifestEntry::fullPath() const in fullPath() function in KoOdfManifestEntry
74 return d->fullPath; in fullPath()
77 void KoOdfManifestEntry::setFullPath(const QString &fullPath) in setFullPath() argument
79 d->fullPath = fullPath; in setFullPath()
/dports/editors/calligra/calligra-3.2.1/libs/odf/
H A DKoOdfManifestEntry.cpp31 QString fullPath; // manifest:full-path member in KoOdfManifestEntry::Private
40 KoOdfManifestEntry::KoOdfManifestEntry(const QString &fullPath, const QString &mediaType, in KoOdfManifestEntry() argument
44 d->fullPath = fullPath; in KoOdfManifestEntry()
52 d->fullPath = other.d->fullPath; in KoOdfManifestEntry()
64 d->fullPath = other.d->fullPath; in operator =()
72 QString KoOdfManifestEntry::fullPath() const in fullPath() function in KoOdfManifestEntry
74 return d->fullPath; in fullPath()
77 void KoOdfManifestEntry::setFullPath(const QString &fullPath) in setFullPath() argument
79 d->fullPath = fullPath; in setFullPath()
/dports/editors/calligraplan/calligraplan-3.3.0/src/libs/odf/
H A DKoOdfManifestEntry.cpp32 QString fullPath; // manifest:full-path member in KoOdfManifestEntry::Private
41 KoOdfManifestEntry::KoOdfManifestEntry(const QString &fullPath, const QString &mediaType, in KoOdfManifestEntry() argument
45 d->fullPath = fullPath; in KoOdfManifestEntry()
53 d->fullPath = other.d->fullPath; in KoOdfManifestEntry()
65 d->fullPath = other.d->fullPath; in operator =()
73 QString KoOdfManifestEntry::fullPath() const in fullPath() function in KoOdfManifestEntry
75 return d->fullPath; in fullPath()
78 void KoOdfManifestEntry::setFullPath(const QString &fullPath) in setFullPath() argument
80 d->fullPath = fullPath; in setFullPath()
/dports/www/ilias/ILIAS-5.4.25/Services/WebServices/RPC/lib/src/de/ilias/services/lucene/index/file/path/
H A DHTLMObjectPathCreator.java48 StringBuilder fullPath = new StringBuilder(); in buildFile() local
54 fullPath.append(System.getProperty("file.separator")); in buildFile()
55 fullPath.append("data"); in buildFile()
56 fullPath.append(System.getProperty("file.separator")); in buildFile()
58 fullPath.append(System.getProperty("file.separator")); in buildFile()
59 fullPath.append("lm_data"); in buildFile()
60 fullPath.append(System.getProperty("file.separator")); in buildFile()
61 fullPath.append("lm_"); in buildFile()
62 fullPath.append(String.valueOf(objId)); in buildFile()
64 file = new File(fullPath.toString()); in buildFile()
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/WebServices/RPC/lib/src/de/ilias/services/lucene/index/file/path/
H A DHTLMObjectPathCreator.java48 StringBuilder fullPath = new StringBuilder(); in buildFile() local
54 fullPath.append(System.getProperty("file.separator")); in buildFile()
55 fullPath.append("data"); in buildFile()
56 fullPath.append(System.getProperty("file.separator")); in buildFile()
58 fullPath.append(System.getProperty("file.separator")); in buildFile()
59 fullPath.append("lm_data"); in buildFile()
60 fullPath.append(System.getProperty("file.separator")); in buildFile()
61 fullPath.append("lm_"); in buildFile()
62 fullPath.append(String.valueOf(objId)); in buildFile()
64 file = new File(fullPath.toString()); in buildFile()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/utils/
H A DSkOSFile.cpp18 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
19 if (!fullPath) { in Basename()
22 const char* filename = strrchr(fullPath, SkPATH_SEPARATOR); in Basename()
24 filename = fullPath; in Basename()
31 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
32 if (!fullPath) { in Dirname()
35 const char* end = strrchr(fullPath, SkPATH_SEPARATOR); in Dirname()
39 if (end == fullPath) { in Dirname()
40 SkASSERT(fullPath[0] == SkPATH_SEPARATOR); in Dirname()
43 return SkString(fullPath, end - fullPath); in Dirname()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/utils/
H A DSkOSPath.cpp19 SkString SkOSPath::Basename(const char* fullPath) { in Basename() argument
20 if (!fullPath) { in Basename()
23 const char* filename = strrchr(fullPath, SEPARATOR); in Basename()
25 filename = fullPath; in Basename()
32 SkString SkOSPath::Dirname(const char* fullPath) { in Dirname() argument
33 if (!fullPath) { in Dirname()
36 const char* end = strrchr(fullPath, SEPARATOR); in Dirname()
40 if (end == fullPath) { in Dirname()
41 SkASSERT(fullPath[0] == SEPARATOR); in Dirname()
44 return SkString(fullPath, end - fullPath); in Dirname()
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/internal/vfs/local/
H A Droot.go32 fullPath := filepath.Join(r.rootPath, path)
34 if r.rootPath == fullPath {
35 return fullPath, "", nil
41 if fullPath == vfsPath {
45 return fullPath, vfsPath, nil
49 fullPath, _, err := r.validatePath(name)
54 return os.Lstat(fullPath)
58 fullPath, _, err := r.validatePath(name)
63 target, err := os.Readlink(fullPath)
70 return filepath.Rel(filepath.Dir(fullPath), target)
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/IO/
H A DPathHelper.Windows.cs48 GetFullPathName(path, ref fullPath); in Normalize()
72 … bool specialPath = fullPath.Length > 1 && fullPath[0] == '\\' && fullPath[1] == '\\'; in Normalize()
73 bool isDevice = PathInternal.IsDevice(ref fullPath); in Normalize()
80 while (index < fullPath.Length) in Normalize()
82 current = fullPath[index]; in Normalize()
151 if (fullPath.Length == path.Length && fullPath.StartsWith(path)) in Normalize()
158 return fullPath.ToString(); in Normalize()
165 fullPath.Free(); in Normalize()
187 …llPathNameW(pathStart + startIndex, (uint)fullPath.Capacity, fullPath.UnderlyingArray, IntPtr.Zero… in GetFullPathName()
190 fullPath.EnsureCapacity(checked((int)result)); in GetFullPathName()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/IO/
H A DPathHelper.Windows.cs48 GetFullPathName(path, ref fullPath); in Normalize()
72 … bool specialPath = fullPath.Length > 1 && fullPath[0] == '\\' && fullPath[1] == '\\'; in Normalize()
73 bool isDevice = PathInternal.IsDevice(ref fullPath); in Normalize()
80 while (index < fullPath.Length) in Normalize()
82 current = fullPath[index]; in Normalize()
151 if (fullPath.Length == path.Length && fullPath.StartsWith(path)) in Normalize()
158 return fullPath.ToString(); in Normalize()
165 fullPath.Free(); in Normalize()
187 …llPathNameW(pathStart + startIndex, (uint)fullPath.Capacity, fullPath.UnderlyingArray, IntPtr.Zero… in GetFullPathName()
190 fullPath.EnsureCapacity(checked((int)result)); in GetFullPathName()
[all …]
/dports/games/hedgewars-server/hedgewars-src-1.0.0/misc/libphyslayer/
H A Dhwpacksmounter.c23 strcpy(fullPath, dir); in hedgewarsMountPackages()
24 strcat(fullPath, "/"); in hedgewarsMountPackages()
25 strcat(fullPath, fileName); in hedgewarsMountPackages()
27 PHYSFS_mount(fullPath, NULL, 0); in hedgewarsMountPackages()
29 free(fullPath); in hedgewarsMountPackages()
63 char * fullPath = (char *)malloc(strlen(dir) + fileNameLength + 2); in hedgewarsMountPackage() local
64 strcpy(fullPath, dir); in hedgewarsMountPackage()
65 strcat(fullPath, "/"); in hedgewarsMountPackage()
66 strcat(fullPath, fileName); in hedgewarsMountPackage()
68 PHYSFS_mount(fullPath, NULL, 0); in hedgewarsMountPackage()
[all …]

12345678910>>...176