Home
last modified time | relevance | path

Searched refs:RealPath (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h46 SmallString<256> RealPath; in resolve() local
47 sys::fs::real_path(ParentPath, RealPath); in resolve()
49 {ParentPath, std::string(RealPath.c_str(), RealPath.size())}); in resolve()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h116 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { in addFileToMapping() argument
118 VFSWriter.addDirectoryMapping(VirtualPath, RealPath); in addFileToMapping()
120 VFSWriter.addFileMapping(VirtualPath, RealPath); in addFileToMapping()
H A DVirtualFileSystem.h1073 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
1078 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
1079 void addDirectoryMapping(StringRef VirtualPath, StringRef RealPath);
H A DFileSystem.h1147 SmallVectorImpl<char> *RealPath = nullptr);
1163 SmallVectorImpl<char> *RealPath = nullptr);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp67 SmallString<256> RealPath; in updateWithRealPath() local
72 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
74 CachedDirs[Directory] = std::string(RealPath); in updateWithRealPath()
76 RealPath = DirWithSymlink->second; in updateWithRealPath()
84 sys::path::append(RealPath, Filename); in updateWithRealPath()
87 Path.swap(RealPath); in updateWithRealPath()
H A DVirtualFileSystem.cpp2643 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, in addEntry() argument
2646 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addEntry()
2648 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in addEntry()
2651 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in addFileMapping() argument
2652 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false); in addFileMapping()
2656 StringRef RealPath) { in addDirectoryMapping() argument
2657 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); in addDirectoryMapping()
/freebsd-14.2/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp179 std::string RealPath; in createFSEventStream() local
185 RealPath = Buffer; in createFSEventStream()
187 RealPath = Path.str(); in createFSEventStream()
192 Context.info = new EventStreamContextData(std::move(RealPath), Receiver); in createFSEventStream()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc158 SmallString<256> RealPath;
159 sys::fs::real_path(PathNameUTF8, RealPath);
160 return std::string(RealPath);
383 RealPath.clear();
404 if (std::error_code EC = UTF16ToUTF8(Data, CountChars, RealPath))
407 llvm::sys::path::make_preferred(RealPath);
1262 EC = realPathFromHandle(File, RealPath);
1269 SmallVectorImpl<char> *RealPath) {
1275 SmallVectorImpl<char> *RealPath) {
1280 if (Result && RealPath)
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc1132 SmallVectorImpl<char> *RealPath) {
1139 if (!RealPath)
1141 RealPath->clear();
1147 RealPath->append(Buffer, Buffer + strlen(Buffer));
1156 RealPath->append(Buffer, Buffer + CharCount);
1164 RealPath->append(Buffer, Buffer + strlen(Buffer));
1173 SmallVectorImpl<char> *RealPath) {
1175 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp482 SmallString<256> RealPath; in isFunctionInstrumented() local
488 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
492 RealFilename = RealPath; in isFunctionInstrumented()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp214 SmallString<256> RealPath; in getFileName() local
215 sys::fs::real_path(ParentPath, RealPath); in getFileName()
218 .insert({ParentPath, GlobalStrings.insert(RealPath).first}) in getFileName()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3005 SmallString<256> RealPath; in addDeviceDependences() local
3006 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDependences()
3008 Hasher.update(RealPath); in addDeviceDependences()